

body {
     font-family: 'Roboto', Arial, sans-serif;
    background: linear-gradient(135deg, #f7f7f9 0%, #e0c3fc 100%);
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;


}


.container {
    background: #fff;
    padding: 2.5rem 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 24px rgba(34, 34, 59, 0.08);
    text-align: center;
    margin: 5% auto;
    max-width: 700px;
    z-index: 1;
    position: relative;
}

/* Container for the form */
form {
    max-width: 600px;
    margin: 50px auto;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    font-family: 'Roboto', sans-serif;
}

/* Labels */
form label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
}

/* Text inputs and textarea */
form input[type="text"],
form input[type="email"],
form textarea {
    width: 100%;
    padding: 10px 12px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    box-sizing: border-box;
}

/* Focus state */
form input:focus,
form textarea:focus {
    border-color: #007bff;
    outline: none;
}

/* Button */
form button {
    padding: 12px 25px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

form button:hover {
    background-color: #0056b3;
}

/* Responsive */
@media (max-width: 640px) {
    form {
        padding: 20px;
        margin: 30px 15px;
    }
}
