/* ======= FORM DARK GLASS BLUE NEON STYLE ======= */
form.space-y-6 {
    background: rgba(10, 10, 20, 0.6);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(0, 180, 255, 0.15);
    border-radius: 1rem;
    padding: 2.5rem;
    box-shadow: 0 0 40px rgba(0, 120, 255, 0.05);
    transition: all 0.3s ease;
}

form.space-y-6:hover {
    box-shadow: 0 0 50px rgba(0, 150, 255, 0.15);
}

/* Logo */
img.logo-besar {
    display: block;
    margin: 0 auto 1rem auto;
    width: 180px;
    opacity: 0.9;
    filter: drop-shadow(0 0 12px rgba(0, 180, 255, 0.3));
}

/* Inputs */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="phonenumber"] {
    width: 100%;
    background-color: rgba(0, 0, 20, 0.5);
    color: #e0f0ff;
    padding: 0.9rem 1rem;
    margin-top: 0.25rem;
    margin-bottom: 1rem;
    border: 1px solid rgba(0, 150, 255, 0.25);
    border-radius: 0.6rem;
    transition: all 0.3s ease;
}

input:focus {
    outline: none;
    border-color: rgba(0, 200, 255, 0.6);
    box-shadow: 0 0 15px rgba(0, 150, 255, 0.4);
    background-color: rgba(10, 20, 40, 0.7);
}

/* Button utama */
button,
.x-hrace009\\:\\:button {
    background: linear-gradient(135deg, rgba(0, 130, 255, 0.9), rgba(0, 200, 255, 0.9));
    color: #fff;
    padding: 0.8rem;
    width: 100%;
    border: none;
    border-radius: 0.75rem;
    font-weight: bold;
    font-size: 1rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
    box-shadow: 0 0 25px rgba(0, 150, 255, 0.3);
    transition: transform 0.2s ease, box-shadow 0.3s ease;
}

button:hover,
.x-hrace009\\:\\:button:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, rgba(0, 170, 255, 1), rgba(0, 230, 255, 1));
    box-shadow: 0 0 40px rgba(0, 200, 255, 0.5);
}

/* Outline button */
.btn.btn-outline {
    background: rgba(0, 0, 20, 0.4);
    color: #8ed8ff !important;
    border: 1px solid rgba(0, 180, 255, 0.25);
    border-radius: 0.75rem;
    padding: 0.8rem;
    font-weight: bold;
    text-align: center;
    transition: all 0.3s ease;
}

.btn.btn-outline:hover {
    background: rgba(0, 180, 255, 0.15);
    border-color: rgba(0, 200, 255, 0.5);
    color: #ffffff !important;
    box-shadow: 0 0 20px rgba(0, 180, 255, 0.3);
    transform: translateY(-2px);
}

/* Divider */
.divider {
    color: rgba(255, 255, 255, 0.2);
    text-align: center;
    position: relative;
}

.divider::before,
.divider::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.divider::before {
    left: 0;
}

.divider::after {
    right: 0;
}

/* Links */
a {
    color: #4dc9ff;
    transition: color 0.2s ease, text-shadow 0.2s ease;
}

a:hover {
    color: #8ee7ff;
    text-shadow: 0 0 10px rgba(0, 200, 255, 0.4);
}

/* Animasi form muncul */
form.space-y-6 {
    animation: fadeIn 0.6s ease-out;
}

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