/* Configuración General */


.form {
    background-color: #fcf6eb; /* Fondo crema idéntico a la imagen */
    color: #2b3a42; /* Azul oscuro/gris para los textos */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 40px 20px;
}

/* Contenedor del Formulario */
.form-container {
    width: 100%;
    margin: 0 auto;
    max-width: 650px;
    padding: 3rem 1rem;
}



.subtitle {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 30px;
}

/* Grupos de campos */
.form-group {
    margin-bottom: 22px;
}

label {
    display: block;
    font-weight: 300;
    font-size: 0.9rem;
    margin-bottom: 8px;
    color: var(--mean-color);
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e2d9cd;
    border-radius: 4px;
    background-color: #ffffff;
    font-size: 1rem;
    color: #333;
    outline: none;
    transition: border-color 0.2s;
}

/* Placeholders con el tono azulado de la imagen */
input::placeholder,
textarea::placeholder {
    color: #1c1c1c;
    opacity: 0.9;
}

input:focus,
textarea:focus {
    border-color: #ff4a41; /* Resalta en rojo al hacer click */
}

textarea {
    resize: vertical;
}

/* Botón de Enviar */
.btn-submit {
    background-color: var(--main-color); /* Rojo/Naranja del botón original */
    color: white;
    border: none;
    padding: 12px 35px;
    font-size: 1rem;
    font-family: "larken", sans-serif;
    font-weight: 400;
    border-radius: 20px; /* Bordes muy redondeados */
    cursor: pointer;
    transition: background-color 0.2s, transform 0.1s;
}

.btn-submit:hover {
    background-color: #2b4b41;
}

.btn-submit:active {
    transform: scale(0.98);
}