.login-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #18181b 0%, #09090b 100%);
    position: relative;
    overflow: hidden;
    padding: 20px;
}

.login-wrapper::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    top: -150px;
    right: -150px;
    animation: float 6s ease-in-out infinite;
}

.login-wrapper::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    bottom: -100px;
    left: -100px;
    animation: float 8s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(20px);
    }
}

.login-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(254, 242, 242, 0.85) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.3);
    width: 100%;
    max-width: 450px;
    padding: 48px 40px;
    position: relative;
    z-index: 1;
}

.logo-container {
    text-align: center;
    margin-bottom: 32px;
}

.logo-container img {
    width: 180px;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.welcome-text {
    text-align: center;
    margin-bottom: 32px;
}

.welcome-text h4 {
    font-size: 28px;
    font-weight: 700;
    color: #171717;
    margin-bottom: 8px;
}

.welcome-text p {
    color: #404040;
    font-size: 15px;
    margin: 0;
}

/* Tambahkan jarak antar input di sini */
.form-group {
    margin-bottom: 20px;
}

.form-control:focus {
    outline: none;
    border-color: #171717;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(23, 23, 23, 0.1);
}

.form-control.is-invalid {
    border-color: #dc2626;
    background: #fef2f2;
}

.form-control.is-invalid:focus {
    box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.1);
}

.invalid-feedback {
    display: block;
    color: #dc2626;
    font-size: 13px;
    margin-top: 8px;
}

.btn-login {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #262626 0%, #171717 100%);
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    margin-top: 16px;
    font-family: inherit;
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
    background: linear-gradient(135deg, #171717 0%, #0a0a0a 100%);
}

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

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

    .welcome-text h4 {
        font-size: 24px;
    }
}