/* Login Page Specific Styles */

.login-body {
    background: radial-gradient(ellipse at center, rgba(245,247,250,0.95) 0%, rgba(233,239,247,0.95) 40%, rgba(250,251,253,0.98) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.login-container {
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    max-width: 900px;
    width: 100%;
}

.login-left {
    background: linear-gradient(135deg, var(--urra-primary) 0%, var(--urra-secondary) 100%);
    color: white;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 500px;
}

.login-right {
    padding: 3rem;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.logo-img {
    height: 60px;
    width: auto;
    margin-right: 15px;
    filter: brightness(0) invert(1); /* Makes the logo white for dark backgrounds */
}

.logo-text {
    color: white;
}

.logo i {
    color: white;
    margin-right: 0.5rem;
}

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

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 0.5rem 0;
    opacity: 0.9;
}

.feature-list i {
    margin-right: 0.5rem;
    color: white;
}

.login-form {
    max-width: 400px;
    width: 100%;
}

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

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

.two-factor-section {
    display: none;
}

.password-toggle {
    cursor: pointer;
    background-color: #f8f9fa;
    border: 2px solid #e9ecef;
    border-left: none;
    border-radius: 0 10px 10px 0;
}

@media (max-width: 768px) {
    .login-left {
        padding: 2rem;
        min-height: 300px;
    }
    
    .login-right {
        padding: 2rem;
    }
    
    .logo {
        font-size: 2rem;
    }
    
    .logo-img {
        height: 45px;
        margin-right: 10px;
    }
}