/* Reset y tipografía base (igual al index.css) */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", sans-serif;
}

body {
    background: #f7f9fc;
    color: #333;
}

/* Contenedor del formulario */
.contact-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 20px;
}

/* Tarjeta del formulario (igual a .card) */
.contact-form {
    background: #ffffff;
    width: 100%;
    max-width: 420px;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* Títulos */
.contact-form h2 {
    font-size: 26px;
    margin-bottom: 10px;
}

.contact-form p {
    font-size: 14px;
    color: #666;
    margin-bottom: 25px;
}

/* Labels */
.contact-form label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    font-size: 14px;
    color: #555;
}

/* Inputs y textarea */
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 18px;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    font-size: 14px;
    background: #ffffff;
    color: #333;
}

/* Focus (acorde al estilo SaaS) */
.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #ff6a3d;
    box-shadow: 0 0 0 2px rgba(255, 106, 61, 0.15);
}

/* Botón principal (igual a .btn-primary) */
.contact-form button {
    width: 100%;
    background: #ff6a3d;
    color: #ffffff;
    border: none;
    padding: 14px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
}

.contact-form button:hover {
    background: #e85c32;
}

/* Responsive */
@media (max-width: 600px) {
    .contact-form {
        padding: 25px;
    }
}
