
.login-container {
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh; 
    padding: 20px;
    font-family: 'Quicksand', sans-serif;
}

.login-box {
    width: 100%;
    max-width: 500px;
    border: 1px solid #eee;
    border-radius: 4px;
    background: #fff;
}

.login-tabs {
    display: flex;
    border-bottom: 2px solid #f0f0f0;
}

.tab {
    flex: 1;
    text-align: center;
    padding: 15px;
    font-weight: bold;
    color: #ccc;
    cursor: pointer;
}

.tab.active {
    color: #ffb6c1;
    border-bottom: 2px solid #ffb6c1;
    margin-bottom: -2px;
}


.login-form {
    padding: 30px;
}

.input-group {
    margin-bottom: 15px;
}

.input-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    box-sizing: border-box; 
}


.btn-login {
    width: 100%;
    padding: 12px;
    background-color: #ffb6c1;
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    margin-top: 10px;
}

.btn-login:hover {
    background-color: #ff9aa2;
}


.login-footer {
    text-align: center;
    margin-top: 20px;
}

.forgot-password {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    display: block;
    margin-bottom: 15px;
}

.or-text {
    position: relative;
    margin: 20px 0;
    color: #999;
}


.btn-facebook {
    width: 100%;
    padding: 12px;
    background-color: #3b5998;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
}

.btn-facebook i {
    margin-right: 10px;
}