/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #222; /* Warna latar belakang gelap */
    color: white;
    font-family: Arial, sans-serif; /* Font yang lebih baik */
}

/* Container Styling */
.container {
    max-width: 500px;
    padding: 20px;
    background-color: #333; /* Warna latar belakang kontainer */
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

/* Header Styling */
header {
    text-align: center;
    margin-bottom: 20px;
}

/* Form Section Styling */
.form-section {
    display: flex;
    flex-direction: column;
    align-items: center;
}

label {
    margin-bottom: 5px;
}

textarea, input[type="text"] {
    width: calc(100% - 20px);
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 5px;
    border: none;
    background-color: #444; /* Warna latar belakang input */
    color: white; /* Warna teks input */
}

button {
    background-color: #007BFF; /* Warna tombol */
    color: white; /* Warna teks tombol */
    border: none;
    border-radius: 5px;
    padding: 10px 15px;
    cursor: pointer;
    transition: background-color 0.3s ease; /* Transisi warna tombol */
}

button:hover {
    background-color: #0056b3; /* Warna tombol saat hover */
}

/* CAPTCHA Container Styling */
.captcha-container {
    margin-top: 20px;
}

/* Footer Styling */
footer {
    text-align: center;
    margin-top: 20px;
}