body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background: linear-gradient(135deg, #2c3e50, #4c4c99);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}
.container {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 30px;
    width: 80%;
    max-width: 600px;
    text-align: center;
}
h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #f7f7f7;
    text-align: left;
}
form {
    display: flex;
    flex-direction: column;
}
label {
    font-size: 1.2em;
    margin-bottom: 10px;
    color: #e0e0e0;
}
textarea {
    border: 2px solid #4c4c99;
    border-radius: 5px;
    padding: 10px;
    font-size: 2em;
    margin-bottom: 20px;
    resize: vertical;
    min-height: 192px;
    background-color: rgba(255, 255, 255, 0.2);
    color: #fff;
}
button {
    background-color: #4c8bf5;
    color: white;
    font-size: 1em;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
button:hover {
    background-color: #3a6dcf;
}