

.contacto {
    width: 100%;
    max-width: 500px;
    padding: 20px;
    background-color: #ffffff30;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.contacto h1 {
    margin-bottom: 20px;
    color: rgb(255, 255, 255);
}

.contacto-formulario label {
    display: block;
    margin-top: 15px;
    text-align: left;
    color: rgb(255, 255, 255);
}

.contacto-formulario input,
.contacto-formulario textarea,
.contacto-formulario button {
    width: 95%;
    padding: 10px;
    margin-top: 5px;
    border-radius: 4px;
    border: 1px solid #ddd;
}

.contacto-formulario textarea {
    resize: vertical;
    min-height: 100px;
}

.contacto-formulario button {
    background-color: #007bff;
    color: rgb(255, 255, 255);
    border: none;
    cursor: pointer;
    margin-top: 20px;
}

.contacto-formulario button:hover {
    background-color: #0056b3;
}

.mensaje {
    margin-bottom: 20px;
    color: green;
    font-weight: bold;
}
