body{
    width: 100%;
    height: 100%;
}
h1{
    color: cornflowerblue;
    text-align: center ;
}
p{
    font-size: 12px;
    color: red;
    user-select: none;
    pointer-events: none;
}
select {
    font-size: 18px;
    margin-top: 10px;
    width: 260px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: #ffffff; /* Warna latar belakang biru */
    border: 1px solid #8d8d8d; /* Warna border biru tua */
    border-radius: 5px;
    padding: 10px 5px;
    font-size: 16px;
    color: #000000; /* Warna teks putih */
    outline: none;
    cursor: pointer;
    transition: border-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out, background-color 0.3s ease-in-out;
}

/* Tambahkan gaya untuk elemen <select> saat difokuskan */
select:focus {
    border-color: #8d8d8d;
    background-color: #ffffff; /* Warna latar belakang saat fokus */
}

/* Menambahkan gaya untuk elemen <option> */
option {
    background-color: #ffffff; /* Warna latar belakang biru */
    color: #fff; /* Warna teks putih */
}
form{
    width: 350px;
    background: white;
    box-shadow: 0px 0px 7px rgba(0,0,0,0.4);    
    border: 1px solid rgb(192, 192, 192);
    position: relative;
    justify-content: center;
    align-items: center;
    display: grid;
    padding: 20px;
    margin-top: 10px;
}
img{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30%;
    user-select: none;
    pointer-events: none;
}
Label{
    position: relative;
    justify-content: center;
    align-items: center;
    display: grid;
    color: black;
    margin-top: 15px;
    margin-bottom: 6px;
}
.label2{
    display: block;
}
.input{
    margin-top: 10px;
    padding: 5px;
    border: 1px solid #c0c0c0;
    border-radius: 5px;
    width: 250px;
    display: flex; /* Gunakan flex untuk memposisikan elemen secara horizontal */
    align-items: center; /* Vertikal sejajar */
    position: relative; /* Untuk positioning absolute pada icon */
}
.input input {
    font-size: 18px;
    outline: none;
    border: none;
    width: 100%; /* Sesuaikan agar mengisi ruang yang tersedia */
    background: transparent;
    padding-right: 30px; /* Beri ruang untuk icon mata */
}

.input i {
    position: absolute;
    right: 10px; /* Posisikan icon di dalam border */
    top: 50%;
    transform: translateY(-50%);
    color: #7a797e; /* Warna default icon */
    cursor: pointer; /* Tambahkan efek pointer saat hover */
}

.input i:hover {
    color: #5887ef; /* Ubah warna saat hover */
}

.kirim{
    justify-content: center;
    display: grid;
    padding-bottom: 30px;
}
.kirim button{
    display: block;
    margin-top: 15px;
    background: cornflowerblue;
    color: white;
    font-weight: bold;
    border: 1px solid rgb(70, 90, 128);
    border-radius: 10px;
    width: 250px;
    height: 35px;
    transition: .5s;
}
.kirim button:hover{
    color: white;
    background: rgb(77, 129, 226);
    border: 1px solid cornflowerblue;
}
.kirim .Daftar a{
    text-align: center;
    align-items: center;
    display: grid;
    margin-top: 15px;
    background:   #01b910  ;
    color: rgb(255, 255, 255);
    font-weight: bold;
    border: 1px solid #028f0e;
    border-radius: 10px;
    width: 250px;
    height: 35px;
    transition: .5s;
}
.kirim .Daftar a:hover{
    color: white;
    background:  #02a00f ;
    border: 1px solid #02a00f;
}
.kirim1{
    position: relative;
    bottom: 100px;
    justify-content: center;
    display: grid;
    padding-bottom: 30px;
}
.kirim1 button{
    display: block;
    margin-top: 15px;
    background: cornflowerblue;
    color: white;
    font-weight: bold;
    border: 1px solid rgb(70, 90, 128);
    border-radius: 10px;
    width: 450px;
    height: 35px;
    transition: .5s;
}
.kirim1 button:hover{
    color: white;
    background: rgb(77, 129, 226);
    border: 1px solid cornflowerblue;
}
.kirim1 .Daftar a{
    text-align: center;
    align-items: center;
    display: grid;
    margin-top: 15px;
    background:   #01b910  ;
    color: rgb(255, 255, 255);
    font-weight: bold;
    border: 1px solid #028f0e;
    border-radius: 10px;
    width: 450px;
    height: 35px;
    transition: .5s;
}
.kirim1 .Daftar a:hover{
    color: white;
    background:  #02a00f ;
    border: 1px solid #02a00f;
}
a{
    color: red;
    text-decoration: none;
}


.captcha {
    margin-top: 10px;
    display: grid;
    align-items: center;
    margin-bottom: 10px;
}

#captchaCanvas {
    border: 1px solid #ccc;
    padding: 5px;
    width: 250px;
    height: 75px;
}
#captchaInput{
    margin-top: 15px;
    width: 250px;
    padding: 5px;
    border: 1px solid #c0c0c0;
    border-radius: 5px;
    outline: none;
    font-size: 18px;
}
.captcha-input {
    margin-top: 10px;
    width: 250px;
    margin-top: 15px;
    margin-bottom: 6px;
    padding: 5px;
    border: 1px solid rgb(192, 192, 192);
    border-radius: 5px;
}

.captcha-input input[type="text"] {
    display: inline-flex;
    font-size: 18px;
    outline: none;
    border: none;
    width: 450px;
    background: transparent;
}
.loading-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    background-color: #ffffff;
}

.loading-container img {
    width: 30%;
    margin-bottom: 20px;
    margin-top: 100px;
}

.loading-bar {
    width: 100%;
    max-width: 300px;
    height: 10px;
    background-color: #ddd;
    border-radius: 5px;
    overflow: hidden;
}

.loading-bar-fill {
    width: 0;
    height: 100%;
    background-color: #5e4caf;
    border-radius: 5px;
}
@media (max-width: 900px) {
    .loading-container img {
        width: 30%;
    }
}
@media (max-width: 600px) {
    body{
        width: 100%;
        height: 100%;
        background: white;
    }
    form{
        width: 100%;
        height: 100%;
        position: relative;
        justify-content: center;
        align-items: center;
        display: grid;
        padding: 0px;
        margin-top: 0px;
        box-shadow: none;    
        border: none;
    }
    .loading-container img {
        width: 80%;
    }

}