/* Login Page Specific Styles */
.login-container {
    max-width: 450px;
    margin: 80px auto;
    padding: 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.login-header {
    text-align: center;
    margin-bottom: 30px;
}

.login-header h2 {
    color: #343a40;
    font-weight: 600;
    margin-bottom: 10px;
}

.login-header p {
    color: #6c757d;
    font-size: 14px;
}

.form-control:focus {
    border-color: #86b7fe;
    box-shadow: 0 0 0 0.2rem rgba(54, 162, 235, 0.25);
}

.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
    padding: 10px 24px;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.3s;
}

.btn-primary:hover {
    background-color: #0056b3;
    border-color: #004085;
    transform: translateY(-1px);
}

.forgot-password {
    font-size: 14px;
    color: #6c757d;
    text-decoration: none;
}

.forgot-password:hover {
    color: #007bff;
    text-decoration: underline;
}

.signup-text {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: #6c757d;
}

.signup-text a {
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
}

.signup-text a:hover {
    text-decoration: underline;
}

.social-login {
    margin-top: 25px;
    text-align: center;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    margin: 0 5px;
    border-radius: 50%;
    color: white;
    font-size: 18px;
    transition: all 0.3s;
}

.facebook-btn {
    background-color: #3b5998;
}

.google-btn {
    background-color: #db4437;
}

.social-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}


.password-wrapper {
    position: relative;
    max-width: 100%;
}

.password-wrapper .form-control {
    padding-left: 2.5rem;
}

.toggle-password {
    position: absolute;
    top: 50%;
    left: 0.75rem;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: #6c757d;
    transition: color 0.2s;
}

.toggle-password:hover,
.toggle-password:focus {
    color: #212529;
    outline: none;
}