body {
    font-family: Arial, sans-serif;
    background-color: #e8eaf6;
    display: flex;
    height: 100vh;
    align-items: center;
    justify-content: center;
}

.container {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    width: 400px;
}

h1 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

textarea {
    box-sizing: border-box; /* Tambahkan properti ini */
    width: 100%;
    height: 120px;
    padding: 12px;
    margin: 12px 0;
    border-radius: 6px;
    border: 1px solid #ddd;
    font-size: 16px;
    resize: none;
}

select {
    padding: 8px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
    margin-bottom: 12px;
    cursor: pointer;
}

select:focus, textarea:focus {
    border-color: #007BFF;
    outline: none;
}

label {
    font-weight: 600;
    margin-right: 10px;
}

