.login-container {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.login-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgb(0 0 0 / 17%);
    max-width: 450px;
    width: 100%;
    padding: 40px;
    animation: slideUp 0.5s ease;
}

.login-container .alert-info {
    text-align: center;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.login-header {
    margin-bottom: 20px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.logo-apsi {
    width: 112px;
}

.cfp02-logo {
    max-width: 115px;
}

.login-body {
    text-align: center;
}

.login-body h2 {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 5px;
    padding-top: 15px;
}

.login-form .form-control {
    border-radius: 10px;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    transition: all 0.3s;
}

.login-form .form-control:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

.password-wrapper {
    position: relative;
}

.btn-toggle-password {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: transparent;
    color: #6c757d;
    cursor: pointer;
    padding: 5px 10px;
    z-index: 10;
}

.btn-toggle-password:hover {
    color: #667eea;
}

.btn-primary {
    background: #5B4EC5;
    border: none;
    border-radius: 10px;
    padding: 8px;
    font-weight: 600;
    transition: all 0.3s;
    font-size: 18px;
}

.btn-primary:hover {
    background: #4A3EB0;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
}

.alert {
    border-radius: 10px;
    border: none;
}

@media (max-width: 576px) {
    .login-card {
        padding: 30px 20px;
    }

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