body {
    font-family: sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    background-color: #f4f4f4;
}

.form-container {
    text-align: center;
    font-size: 20px;
    background: linear-gradient(to bottom, purple, violet, pink);
    color: white;
    border-radius: 10px;
    padding: 2rem;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

label {
    display: inline-block;
    color: black; 
    border: 2px solid white; 
    background-color: white; 
    padding: 8px 15px;
    margin: 15px 0 5px 0;
    border-radius: 5px;
    font-size: 16px;
}

input, textarea {
    width: 100%; 
    box-sizing: border-box; 
    padding: 12px;
    border-radius: 5px;
    border: none;
    font-size: 16px;
}

textarea {
    resize: vertical;
}

button {
    background-color: purple;
    font-size: 18px;
    padding: 0.7em 2em; 
    border-radius: 10px;
    color: white;
    border: none;
    cursor: pointer;
    margin-top: 20px;
    transition: background-color 0.3s;
}

button:hover {
    background-color: violet;
}