.quicksand-one-regular {
    font-family: "Quicksand", serif;
    font-optical-sizing: auto;
    font-weight: 350;
    font-style: normal;
  }

/* Body dan Background */
body {
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url(img/bg1-login.png) no-repeat center;
    background-size: cover;
    font-family: 'Quicksand', sans-serif;
    overflow: hidden; /* Mencegah scroll */
}

/* Wrapper untuk form */
.wrapper {
    display: flex;
    flex-direction: column; /* Mengatur form menjadi kolom */
    justify-content: center;
    align-items: center;
    width: 100%; 
    max-width: 400px; /* Maksimal lebar form */
    height: auto; /* Tinggi wrapper 100% dari viewport */
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.8); /* Latar belakang putih transparan */
    border-radius: 10px; /* Sudut membulat */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Bayangan untuk efek kedalaman */
}

form {
    width: 100%; /* Lebar form 100% */
    text-align: center;
}

h1 {
    font-size: 1.5rem;
    color: #FFA500;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 1.5rem;
    font-weight: bolder;
}

/* Logo */
.image-logo img {
    height: 60px;
    margin-top: 2rem;
}
/* Input Box */
.input-box {
    position: relative;
    margin: 1rem 0;
    width: 100%; /* Lebar input 100% */
}
.input-box input {
    padding: 12px 40px;
    width: 100%;
    border-radius: 10px;
    background-color: #ffffff;
    border: 1px solid #000000;
    font-size: 1rem;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.input-box input:focus {
    border-color: #FFA500;
    outline: none;
    box-shadow: 0 0 5px rgba(255, 165, 0, 0.5);
}


.input-box i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #aaa;
    font-size: 1.2rem;
}

.form-btn {
    background-color: #FFA500;
    color: white;
    border: none;
    border-radius: 10px;
    padding: 12px;
    font-size: 1rem;
    cursor: pointer;
    width: 100%; /* Lebar tombol 100% */
    text-transform: uppercase;
    margin-top: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s;
}
.form-btn:hover {
    background-color: #ff8500;
}
/* Teks Daftar */
p {
    font-size: 0.9rem;
    margin-top: 1rem;
    color: #000000;
}

p a {
    color: #FFA500;
    font-weight: bold;
    font-family: "Quicksand", serif;
    text-decoration: none;
}

p a:hover {
    text-decoration: underline;
}

p.login-text {
    font-size: 0.9rem;
    margin-top: 1rem;
    color: #000000; /* Pastikan warna kontras dengan latar belakang */
}

p.login-text a {
    color: #FFA500; /* Warna link */
    font-weight: bold;
    font-family: "Quicksand", serif;
    text-decoration: none;
}

p.login-text a:hover {
    text-decoration: underline; /* Garis bawah saat hover */
}

.image-container {
    display: none; /* Sembunyikan gambar pada layar kecil */
}

@media (min-width: 768px) {
    .wrapper {
        flex-direction: row; /* Mengatur form dan gambar dalam satu baris */
    }

    .image-container {
        display: flex; /* Tampilkan gambar pada layar besar */
        justify-content: flex-start;
        align-items: center;
        padding: 2rem;
    }

    .card-image img {
        width: 400px;
        max-width: 100%; 
        height: auto;
        filter: drop-shadow(2px 2px 5px rgba(0, 0, 0, 0.2));
    }
}