
.video-background-wrapper {
    position: fixed; /* Atau absolute jika parentnya body/html tanpa padding/margin */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -2; /* Di paling belakang */
}

.scroll-video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Memastikan video menutupi area tanpa merusak aspek rasio */
}

.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2); /* Hitam dengan opasitas 50% */
    z-index: -1; /* Di atas video, di bawah konten */
}

.login-regist-section {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh; /* Memastikan section mengambil tinggi penuh viewport */
    position: relative; /* Diperlukan agar z-index pada anak bisa bekerja terhadap overlay */
    z-index: 1; /* Di atas overlay */
    padding: 20px; /* Memberi sedikit padding agar tidak menempel di tepi layar kecil */
}

.form-container {
    background-color: rgba(255, 255, 255, 0.1); /* Latar belakang form agar lebih terbaca */
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    max-width: 450px; /* Lebar maksimum form */
    width: 100%; /* Responsif */
}

.chonburi-regular {
    font-family: 'Chonburi', cursive;
    text-align: center;
    margin-bottom: 1.5rem;
}

.raleway-medium {
    font-family: 'Raleway', sans-serif;
    font-weight: 500;
}

.raleway-thin {
    font-family: 'Raleway', sans-serif;
    font-weight: 100; /* Atau 300 jika 100 terlalu tipis */
}

.btn-black-border {
    background-color: black;
    color: white;
    border: 1px solid black;
    padding: 10px 20px;
    transition: background-color 0.3s, color 0.3s;
    width: 100%; /* Tombol full width */
}

.btn-black-border:hover {
    background-color: white;
    color: black;
}

/* Menghilangkan div spacer yang tidak dibutuhkan lagi */
/* <div style="height: 90vh;"></div> */

/* Bootstrap alert styling (jika perlu kustomisasi lebih) */
.alert {
    font-size: 0.9rem;
}