/* Global Styles */
body {
    font-family: Arial, sans-serif;
    background-color: #DAC0A3;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

/* Payment Container */
.payment-container {
    background-color: #fff;
    width: 350px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

/* Header */
.header {
    margin-bottom: 0px;
}
.header .image {
    display: flex;
    flex-direction: column; /* Mengatur elemen di dalamnya secara vertikal (gambar di atas teks) */
    align-items: center;    /* Menyusun elemen secara horizontal di tengah */
    justify-content: center;
    width: 100%;
    margin-top: 0;
}

.header .image img {
    width: 90%;     /* Tentukan lebar gambar */
    height: 90%;    /* Tentukan tinggi gambar */
    object-fit: cover;  /* Menjaga proporsi gambar */
    margin-bottom: 0;  /* Jarak antara gambar dan teks */
}



.header h1 {
    font-size: 18px;
    color: #333;
}

/* Input Groups */
.input-group {
    margin-bottom: 15px;
    text-align: left;
}
.input-group label {
    display: block;
    font-size: 14px;
    color: #555;
    margin-bottom: 5px;
}
.input-group input, 
.input-group select {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

/* Submit Button */
button {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    color: #fff;
    background-color: #DAC0A3;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
}
button:hover {
    background-color: #74512D;
}