/* CONTENEDOR GENERAL */
.fm-form-container {
    max-width: 950px;
    margin: 0 auto;
    padding: 35px;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.08);
}

/* TITULO PRINCIPAL */
.fm-title {
    text-align: center;
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #003366;
}

/* SECCIONES */
.fm-section {
    margin-top: 35px;
}

.fm-section-title {
    font-size: 22px;
    font-weight: 600;
    color: #003366;
    margin-bottom: 15px;
    padding-left: 10px;
    border-left: 5px solid #0066cc;
}

/* GRID */
.fm-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 22px;
}

/* GRUPOS */
.fm-group {
    display: flex;
    flex-direction: column;
}

.fm-group label {
    font-weight: 500;
    margin-bottom: 6px;
    color: #003366;
}

/* INPUTS Y SELECTS */
input, select {
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ccd6e0;
    background: #f7f9fc;
    font-size: 15px;
    transition: all 0.2s ease;
}

input:focus, select:focus {
    border-color: #0066cc;
    background: #ffffff;
    box-shadow: 0 0 4px rgba(0,102,204,0.3);
    outline: none;
}


/* BOTÓN */
.fm-submit {
    width: 100%;
    padding: 15px;
    margin-top: 35px;
    background: #0066cc;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
}

.fm-submit:hover {
    background: #004c99;
}
