/* Global Styles */
body, html {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
    background-color: #f9f9f9;
    color: #333;
    text-align: center;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Container */
.container {
    max-width: 600px; /* Ukuran untuk desktop */
    width: 100%;
    padding: 20px;
    text-align: center;
}

/* Header Section */
.header {
    margin-bottom: 20px;
}

.header h1 {
    font-size: 28px;
    color: #007bff;
    margin-bottom: 10px;
}

.header p {
    font-size: 20px;
    font-weight: bold;
    color: #007bff;
    margin-top: 20px;
}

.header img.logo {
    width: 100%;
    max-width: 800px; /* Ukuran gambar besar untuk desktop */
    height: auto;
    margin: 20px auto;
    display: block;
}

/* Form Styling */
form {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 15px;
    text-align: left;
    position: relative;
}

.form-group label {
    position: absolute;
    top: -12px;
    left: 15px;
    background: white;
    padding: 0 5px;
    color: #007bff;
    font-weight: bold;
    font-size: 12px;
}

.form-group input {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ced4da;
    border-radius: 5px;
    font-size: 16px;
    outline: none;
    box-sizing: border-box;
}

.submit-btn {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 12px;
    width: 100%;
    font-size: 18px;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
}

.submit-btn:hover {
    background-color: #0056b3;
}

/* Footer Logo */
.logo-under-form img {
    width: 100%;
    max-width: 800px; /* Ukuran gambar besar untuk desktop */
    height: auto;
    margin: 20px auto;
    display: block;
}

/* Media Queries */
@media (max-width: 600px) {
    /* Gambar di versi mobile akan lebih kecil */
    .header img.logo {
        width: 100%; /* Gambar akan mengikuti lebar kontainer */
        max-width: 400px; /* Gambar maksimal 300px di mobile */
    }

    .form-group input {
        font-size: 14px;
    }

    .logo-under-form img {
        width: 400px; /* Ukuran logo kecil di bagian bawah untuk mobile */
    }
}

/* Overlay Styles */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8); /* Warna gelap transparan */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999; /* Overlay di atas semua konten */
}

.hidden {
    display: none;
}

.lottie-container {
    width: 300px; /* Sesuaikan ukuran animasi */
    height: 300px;
}

/* Header Styling */
.header {
    margin-bottom: 40px;
    text-align: center;
}

.header h1 {
    font-size: 28px;
    color: #007bff; /* Biru */
}

.header img {
    width: 200px; /* Ukuran yang sesuai untuk logo */
    margin: 0 auto;
    display: block;
}

/* Processing Section Styling */
.processing-section {
    text-align: center;
    margin-top: 40px;
}

.processing-section h5 {
    font-size: 16px;
    color: #333;
    margin-top: 20px;
}

.processing-section p {
    margin-top: 10px;
}

.processing-section .btn {
    background-color: #007bff;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
}

.processing-section .btn:hover {
    background-color: #0056b3;
}


/* Media Query */
@media (max-width: 768px) {
    .header img {
        width: 150px;
    }
}
