/* Import font dari Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

/* Pengaturan dasar untuk seluruh halaman */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #f4f7f6;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}

/* Kotak utama pembungkus konten */
.container {
    background-color: #ffffff;
    padding: 30px 40px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 500px;
}

/* Styling untuk judul utama */
h1 {
    color: #2c3e50;
    text-align: center;
    margin-bottom: 10px;
}

/* Styling untuk paragraf deskripsi */
p {
    text-align: center;
    color: #7f8c8d;
    margin-bottom: 30px;
}

/* Grup untuk setiap label dan input */
.form-group {
    margin-bottom: 20px;
}

/* Styling untuk label */
label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #34495e;
}

/* Styling untuk kotak input teks */
input[type="text"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #bdc3c7;
    border-radius: 5px;
    box-sizing: border-box; /* Agar padding tidak menambah lebar */
    transition: border-color 0.3s;
}

/* Efek saat kotak input diklik */
input[type="text"]:focus {
    border-color: #3498db;
    outline: none;
}

/* Styling untuk tombol */
button {
    width: 100%;
    padding: 12px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

/* Efek saat kursor mouse di atas tombol */
button:hover {
    background-color: #2980b9;
}

/* Kontainer untuk menampung hasil */
#hasil-container {
    margin-top: 30px;
    padding: 20px;
    background-color: #ecf0f1;
    border-radius: 5px;
    border-left: 5px solid #3498db;
}

#hasil-container h2 {
    margin-top: 0;
    color: #2c3e50;
}

#hasil-deskripsi {
    text-align: left;
    color: #34495e;
    font-style: italic;
}