body {
    font-family: Arial, sans-serif;
    background-color: #128C7E;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    background-color: #25D366;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 400px;
    height: 400px;
    text-align: center;
}

h1 {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

input, textarea {
    width: 350px;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

button {
    background-color: #128C7E;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    width: 350px;
    height: 50px;
}

button:hover {
    background-color: #25D366;
}

.hidden {
    display: none;
}

#whatsappLink {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

#whatsappLink:hover {
    text-decoration: underline;
}