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

.container {
    text-align: center;
    background-color: #432A79;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

h1 {
    margin-bottom: 20px;
}

textarea {
    width: 100%;
    height: 100px;
    margin-bottom: 20px;
    border-radius: 5px;
    border: none;
    padding: 10px;
    font-size: 16px;
}

select, button {
    padding: 10px;
    font-size: 16px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    margin-bottom: 20px;
}

button {
    background-color: #e74c3c;
    color: white;
    width: 100%;
}

select {
    margin-bottom: 10px;
    width: 100%;
    background-color: white;
    color: #432A79;
}
