.contacto {
    background-color: #ffffff;
    border-radius: 8px;
    margin: 20px 0;
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.input-group {
    width: 100%;
    max-width: 500px;
    margin-bottom: 20px;
}

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

.input-group input, .input-group textarea {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

.input-group input:focus, .input-group textarea:focus {
    outline: none;
    border-color: #4CAF50;
}

.submit-btn {
    width: 100%;
    max-width: 500px;
}

.submit-btn input[type="submit"] {
    width: 100%;
    background-color: #494848;
    border: none;
    color: white;
    padding: 15px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
}

.submit-btn input[type="submit"]:hover {
    background-color: #45a049;
}