/* Resetando margens e preenchimentos */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Estilos principais */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f7fa;
    color: #333;
    line-height: 1.6;
    margin: 20px;
}

/* Container centralizado */
.container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background-color: #ffffff;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

/* Títulos */
h2 {
    color: #0056b3;
    font-size: 24px;
    text-align: center;
    margin-bottom: 20px;
}

h3 {
    color: #333;
}

/* Estilo dos campos de entrada */
input[type="email"], input[type="text"], textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

/* Botões */
input[type="submit"], button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    width: 100%;
}

input[type="submit"]:hover, button:hover {
    background-color: #0056b3;
}

/* Painel de resposta */
.response-panel {
    display: none; /* Inicialmente invisível */
    margin-top: 20px;
}

textarea {
    height: 100px;
}

/* Estilo para mensagens de resultado */
.result {
    margin-top: 20px;
    text-align: center;
}

.success {
    color: green;
    font-weight: bold;
}

.error {
    color: red;
    font-weight: bold;
}

/* Responsividade */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }

    h2 {
        font-size: 20px;
    }

    input[type="email"], input[type="text"], textarea {
        font-size: 14px;
    }

    input[type="submit"], button {
        font-size: 14px;
    }
}
