/* Fondo general */
.sugerencias-hero {
    padding-top: 120px;
    display: flex;
    justify-content: center;
    width: 100%;
}

/* Contenedor que centra todo */
.sugerencias-container {
    width: 100%;
    max-width: 900px;
    padding: 20px;
}

/* Cuadro blanco */
.form-wrapper {
    background: #ffffffdd;
    padding: 35px;
    border-radius: 18px;
    backdrop-filter: blur(4px);
    box-shadow: 0 0 12px rgba(0,0,0,0.2);
    border: 2px solid #ffffff33;
    width: 100%;
    box-sizing: border-box;
}

/* Títulos dentro del cuadro */
.form-wrapper h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 5px;
}

.form-wrapper .subtext {
    text-align: center;
    margin-bottom: 22px;
    color: #444;
}

/* Inputs */
.row-2 {
    display: flex;
    gap: 20px;
}

.input-group {
    width: 100%;
    margin-bottom: 18px;
}

.input-group label {
    font-weight: 600;
    color: #333;
}

.input-group input,
.input-group textarea {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid #aaa;
    font-size: 15px;
    transition: .2s;
    outline: none;
}

.input-group input:focus,
.input-group textarea:focus {
    border-color: #e63946;
    box-shadow: 0 0 4px #e6394644;
}

.btn-enviar {
    width: 100%;
    padding: 13px;
    background: #e63946;
    color: white;
    font-size: 17px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: .2s;
    margin-top: 10px;
}

.btn-enviar:hover {
    background: #c52430;
}

/* Errores */
.error {
    color: #e63946;
    font-size: 13px;
    height: 14px;
}

/* Éxito */
.success-msg {
    color: green;
    font-weight: bold;
    text-align: center;
    margin-top: 10px;
}

/* RESPONSIVE */
@media (max-width: 768px) {

    .row-2 {
        flex-direction: column;
    }

    .form-wrapper {
        padding: 22px;
    }
}
