body {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 100vh;
}

.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 80px);
    padding: 2rem;
    gap: 3rem;
}

.login-card {
    background: white;
    border-radius: 1.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    padding: 3rem;
    width: 100%;
    max-width: 450px;
    animation: slideInUp 0.6s ease-out;
}

.login-footer .back-to-login {
    color: #6c757d;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.login-footer .back-to-login:hover {
    color: var(--ci-orange);
    transform: translateX(-3px);
}

.login-footer .back-to-login i {
    font-size: 0.8rem;
}
.login-card h2 {
    border-left: none !important;
    padding-left: 0 !important;
    color: var(--ci-black) !important;
    background: transparent !important;
}

.login-card .alert {
    margin-top: 1rem;
    text-align: left;
    border-radius: 0.75rem;
}

.password-input-wrapper {
    display: flex;
    align-items: center;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.login-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.login-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--ci-orange) 0%, #c33f17 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 20px rgba(233, 77, 29, 0.3);
}

.login-icon i {
    font-size: 2.5rem;
    color: white;
}

.login-header h2 {
    color: var(--ci-black);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    border: none;
    padding: 0;
}

.login-header p {
    color: #6c757d;
    font-size: 0.95rem;
    margin: 0;
}

.login-form {
    margin-top: 2rem;
}

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

.login-form .form-label {
    font-weight: 600;
    color: var(--ci-black);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.login-form .form-label i {
    color: var(--ci-orange);
    font-size: 0.85rem;
}

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

.login-form .form-control:focus {
    border-color: var(--ci-orange);
    box-shadow: 0 0 0 0.2rem rgba(233, 77, 29, 0.15);
    outline: none;
}

.password-input-wrapper {
    position: relative;
}

.password-input-wrapper .form-control {
    padding-right: 3rem;
}

.password-toggle {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    padding: 0 1rem;
    background: transparent;
    border: none;
    color: #6c757d;
    cursor: pointer;
    transition: color 0.2s ease;
}

.password-toggle:hover {
    color: var(--ci-orange);
}

.form-check-input {
    width: 1.2rem;
    height: 1.2rem;
    border: 2px solid #dee2e6;
    border-radius: 0.35rem;
    cursor: pointer;
}

.form-check-input:checked {
    background-color: var(--ci-orange);
    border-color: var(--ci-orange);
}

.form-check-input:focus {
    box-shadow: 0 0 0 0.2rem rgba(233, 77, 29, 0.15);
}

.form-check-label {
    font-size: 0.9rem;
    color: #495057;
    cursor: pointer;
    user-select: none;
}

.alert {
    border: none;
    border-radius: 0.75rem;
    padding: 1rem;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.alert i {
    font-size: 1.1rem;
}

.alert-danger {
    background: #f8d7da;
    color: #721c24;
}

.alert-success {
    background: #d4edda;
    color: #155724;
}

.btn-login {
    width: 100%;
    background: linear-gradient(135deg, var(--ci-orange) 0%, #c33f17 100%);
    color: white;
    border: none;
    border-radius: 0.75rem;
    padding: 0.95rem;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(233, 77, 29, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-login:hover {
    background: linear-gradient(135deg, #c33f17 0%, #a33414 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233, 77, 29, 0.4);
}

.btn-login:active {
    transform: translateY(0);
}

.login-footer {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e9ecef;
}

.forgot-password {
    color: var(--ci-orange);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

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

.login-info {
    background: linear-gradient(135deg, var(--ci-orange) 0%, #c33f17 100%);
    border-radius: 1.5rem;
    padding: 3rem;
    width: 100%;
    max-width: 400px;
    color: white;
    box-shadow: 0 10px 40px rgba(233, 77, 29, 0.3);
    animation: slideInRight 0.6s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.info-content {
    text-align: center;
}

.info-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    backdrop-filter: blur(10px);
}

.info-icon i {
    font-size: 3rem;
    color: white;
}

.login-info h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    border: none;
    padding: 0;
    color: white;
}

.login-info > p {
    font-size: 1.05rem;
    opacity: 0.95;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.info-features {
    text-align: left;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
}

.feature-item i {
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.feature-item span {
    font-size: 0.95rem;
    font-weight: 500;
}

@media (max-width: 1024px) {
    .login-info {
        display: none;
    }

    .login-container {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .login-card {
        padding: 2rem 1.5rem;
    }

    .login-header h2 {
        font-size: 1.5rem;
    }

    .login-icon {
        width: 60px;
        height: 60px;
    }

    .login-icon i {
        font-size: 2rem;
    }

    .login-container {
        padding: 1rem;
        min-height: calc(100vh - 60px);
    }
}