/* General */
* {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    line-height: 1.6;
    color: #0a1927;
    background-color: white;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Encabezado */
.contact-header {
    text-align: center;
    background-color:  #874eaf;
    color: white;
    padding: 20px 10px;
}

.contact-header h1 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.contact-header p {
    font-size: 1.2rem;
}

/* Formulario */
.form-container {
    width: 350px;
    margin: 30px auto;
    padding: 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

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

form input, form select, form textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}

form input:focus, form select:focus, form textarea:focus {
    border-color:  #874eaf;
    outline: none;
}

.btn-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 10px 15px;
    background-color: #25d366;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit i {
    margin-right: 10px;
    font-size: 1.2rem;
}

.btn-submit:hover {
    background-color: #1ebe58;
}

.required {
    color: red;
    font-weight: bold;
}

/* Pie de página */
footer {
    text-align: center;
    padding: 20px;
    background:  #874eaf;
    color: white;
    font-size: 0.9rem;
    margin-top: auto;
}

.link-footer {
    text-decoration: none;
    color: #f9f9f9;
}



input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"] {
    -moz-appearance: textfield; /* Firefox */
    appearance: textfield; /* Otros navegadores */
}