body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: linear-gradient(to right, #ffccd5, #ffe5ec);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.form-container {
    background: white;
    padding: 40px;
    border-radius: 20px;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
}

input, textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 10px;
    border: 1px solid #ddd;
}

button {
    padding: 12px;
    width: 100%;
    background: #ff4d6d;
    border: none;
    color: white;
    border-radius: 25px;
    cursor: pointer;
}
