/* Login Page Styles - Uses variables from style.css */
body.login-page {
    background: linear-gradient(135deg, var(--earth-green) 0%, var(--earth-brown) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-container {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    overflow: hidden;
    max-width: 900px;
    width: 100%;
    margin: 20px;
}

.login-left {
    background: linear-gradient(135deg, var(--earth-green) 0%, var(--success-color) 100%);
    color: white;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.login-right {
    padding: 3rem;
}

.logo-section {
    margin-bottom: 2rem;
}

.logo-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--light-color);
}

.company-name {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.tagline {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
}

.features-list i {
    margin-right: 0.75rem;
    color: var(--light-color);
}

.login-page .form-control {
    border-radius: 10px;
    border: 2px solid #e9ecef;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.login-page .form-control:focus {
    border-color: var(--earth-green);
    box-shadow: 0 0 0 0.2rem rgba(107, 142, 78, 0.25);
}

.btn-login {
    background: linear-gradient(135deg, var(--earth-green) 0%, var(--success-color) 100%);
    border: none;
    border-radius: 10px;
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(107, 142, 78, 0.3);
    color: white;
}

.input-group-text {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-right: none;
    border-radius: 10px 0 0 10px;
}

.form-control.with-icon {
    border-left: none;
    border-radius: 0 10px 10px 0;
}

.remember-forgot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 1.5rem 0;
}

.login-page .form-check-input:checked {
    background-color: var(--earth-green);
    border-color: var(--earth-green);
}

.forgot-password {
    color: var(--earth-green);
    text-decoration: none;
    font-weight: 500;
}

.forgot-password:hover {
    color: var(--dark-color);
    text-decoration: underline;
}

.divider {
    text-align: center;
    margin: 2rem 0;
    position: relative;
    display: flex;
    align-items: center;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #dee2e6;
}

.divider span {
    padding: 0 1rem;
    color: #6c757d;
    white-space: nowrap;
}

.social-login {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.btn-social {
    flex: 1;
    padding: 0.75rem;
    border-radius: 10px;
    border: 2px solid #e9ecef;
    background: white;
    color: #6c757d;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.btn-social:hover {
    border-color: var(--earth-green);
    color: var(--earth-green);
    transform: translateY(-1px);
}

.btn-social i {
    margin-right: 0.5rem;
}

@media (max-width: 768px) {
    .login-container {
        margin: 10px;
    }
    
    .login-left {
        padding: 2rem;
    }
    
    .login-right {
        padding: 2rem;
    }
    
    .company-name {
        font-size: 2rem;
    }
    
    .logo-icon {
        font-size: 3rem;
    }
}

