/* FORM TRANSPARAN DARK MODE STYLING */

/* General form styling */
form.space-y-6 {
    background: rgba(0, 0, 0, 0.6); /* Transparan hitam */
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.6);
}

/* Input boxes */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="phonenumber"] {
    width: 100%;
    background-color: rgba(30, 30, 30, 0.7); /* Semi transparan */
    color: #fff;
    padding: 0.75rem 1rem;
    margin-top: 0.25rem;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

input:focus {
    outline: none;
    border-color: #00bfff;
    box-shadow: 0 0 10px rgba(0, 191, 255, 0.3);
}

/* Submit button */
button,
.x-hrace009\\:\\:button {
    background: linear-gradient(135deg, rgba(50, 50, 50, 0.8), rgba(80, 80, 80, 0.8));
    color: #fff;
    padding: 0.75rem;
    width: 100%;
    border: none;
    border-radius: 0.75rem;
    font-weight: bold;
    font-size: 1rem;
    backdrop-filter: blur(3px);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

button:hover,
.x-hrace009\\:\\:button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.15);
}

/* Terms agreement */
.tos-agree {
    color: #ccc;
    font-size: 0.9rem;
}

/* Error messages */
.alert-error {
    background-color: rgba(100, 0, 0, 0.15);
    color: #ff4c4c;
    padding: 1rem;
    border: 1px solid rgba(200, 0, 0, 0.3);
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}
