/* CSS File (styles.css) */
body {
    font-family: Arial, sans-serif;
    background: linear-gradient(to right, #3b82f6, #9333ea);
    text-align: center;
    padding: 20px;
}
.container {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 50%;
    margin: auto;
}
textarea, select, button {
    width: 100%;
    margin: 10px 0;
    padding: 10px;
    border-radius: 5px;
}
button {
    background: #3b82f6;
    color: white;
    font-weight: bold;
    cursor: pointer;
}
button:hover {
    background: #2563eb;
}