.login-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background: linear-gradient(135deg, var(--uts-blue) 0%, var(--uts-green) 100%);
    min-height: 100vh;
    padding: 60px 0;
    display: flex;
    align-items: center;
}

.min-vh-80 {
    min-height: 80vh;
}

.login-wrapper {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.login-info-side {
    background: linear-gradient(135deg, var(--uts-dark) 0%, #1a1a1a 100%);
    color: white;
    padding: 4rem;
    display: flex;
    align-items: center;
}

.info-content {
    width: 100%;
}

.login-logo {
    max-width: 200px;
    filter: brightness(0) invert(1);
}

.info-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--uts-green);
}

.info-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
}

.feature-item i {
    color: var(--uts-green);
    font-size: 1.5rem;
}

.back-link a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.back-link a:hover {
    color: var(--uts-green);
    transform: translateX(-5px);
}

.login-form-side {
    padding: 4rem;
    background: white;
}

.form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.form-header h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--uts-dark);
    margin-bottom: 0.5rem;
}

.form-header p {
    color: var(--uts-gray);
    font-size: 1rem;
}

.login-form .form-group {
    margin-bottom: 1.5rem;
}

.login-form label {
    font-weight: 600;
    color: var(--uts-dark);
    margin-bottom: 0.5rem;
    display: block;
    font-size: 0.95rem;
}

.login-form .form-control {
    padding: 0.9rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.login-form .form-control:focus {
    border-color: var(--uts-blue);
    box-shadow: 0 0 0 0.2rem rgba(0, 163, 224, 0.15);
    outline: none;
}

.password-wrapper {
    position: relative;
}

.toggle-password {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--uts-gray);
    cursor: pointer;
    font-size: 1.2rem;
    padding: 0;
    transition: color 0.3s ease;
}

.toggle-password:hover {
    color: var(--uts-blue);
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.form-check-label {
    color: var(--uts-gray);
    font-size: 0.9rem;
}

.forgot-link {
    color: var(--uts-blue);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.forgot-link:hover {
    color: var(--uts-dark-green);
}

.btn-login {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--uts-blue) 0%, #0080b8 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 163, 224, 0.4);
}

.help-section {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
}

.help-text {
    color: var(--uts-gray);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.contact-info {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.contact-info a {
    color: var(--uts-blue);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--uts-dark-green);
}

.separator {
    color: var(--uts-gray);
}

/* Responsive */
@media (max-width: 992px) {

    .login-info-side,
    .login-form-side {
        padding: 3rem 2rem;
    }

    .info-title {
        font-size: 1.5rem;
    }

    .login-logo {
        max-width: 150px;
    }
}

@media (max-width: 768px) {
    .login-section {
        padding: 20px 0;
    }

    .login-info-side {
        padding: 2rem;
        text-align: center;
    }

    .login-form-side {
        padding: 2rem;
    }

    .features-list {
        gap: 1rem;
    }

    .feature-item {
        font-size: 1rem;
    }
}