/* Estilos inspirados en Microsoft */

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f3f3f3;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    background-color: white;
    padding: 2em;
    border-radius: 8px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 100%;
}

/* Estilos del formulario */
h2 {
    font-size: 24px;
    color: #2b579a;
    margin-bottom: 10px;
    text-align: center;
}

p {
    font-size: 14px;
    color: #333;
    text-align: center;
    margin-bottom: 20px;
}

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

label {
    display: block;
    font-size: 14px;
    color: #2b579a;
    margin-bottom: 5px;
}

input[type="text"],
input[type="tel"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #d0d0d0;
    border-radius: 5px;
    box-sizing: border-box;
    font-size: 14px;
}

input[type="text"]:focus,
input[type="tel"]:focus {
    border-color: #2b579a;
    outline: none;
    box-shadow: 0px 0px 3px rgba(43, 87, 154, 0.5);
}

button {
    width: 100%;
    background-color: #2b579a;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #1f4d87;
}

/* Estilos de la página de agradecimiento */
h1 {
    font-size: 28px;
    color: #2b579a;
    margin-bottom: 10px;
    text-align: center;
}

.thank-you-text {
    font-size: 16px;
    color: #333;
    text-align: center;
    margin-bottom: 20px;
}

a {
    display: inline-block;
    padding: 10px 20px;
    background-color: #2b579a;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    transition: background-color 0.3s;
}

a:hover {
    background-color: #1f4d87;
}

/* Estilos para el texto de error */
.error-text {
    font-size: 16px;
    color: #d9534f; /* Rojo suave para indicar error */
    text-align: center;
    margin-bottom: 20px;
}
