body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(45deg, #ff6b6b, #f06595);
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    padding: 20px;
    box-sizing: border-box;
}

.container {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    max-width: 500px;
    width: 100%;
    margin-top: 250px;
    margin-bottom: 50px;
}

h1 {
    font-family: 'Dancing Script', cursive;
    font-size: 24px;
    text-align: center;
    color: #333333;
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    color: #555555;
    font-weight: bold;
    font-family: 'Lobster', cursive;
}

input[type="text"],
input[type="email"],
textarea {
    width: 100%; /* Changed to 100% */
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #cccccc;
    border-radius: 4px;
    font-size: 16px;
    font-family: 'Arial', sans-serif;
    box-sizing: border-box; /* Ensure padding is included in width */
}

button {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 4px;
    background: linear-gradient(45deg, #ff6b6b, #f06595);
    color: white;
    font-size: 16px;
    font-family: 'Dancing Script', cursive;
    cursor: pointer;
    transition: background 0.3s ease;
}

button:hover {
    background: linear-gradient(45deg, #f06595, #ff6b6b);
}
