/* ===== FONDO GENERAL ===== */
body {
    background-color: #3BB29C !important;
    font-family: Arial, Helvetica, sans-serif;
}

/* ===== CONTENEDOR CENTRAL ===== */
.container,
.box,
.card {
    max-width: 700px;
    margin: 40px auto !important;
    background: #ffffff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

/* ===== TITULOS ===== */
h1, h2, h3 {
    color: #298977;
}

/* ===== LINKS ===== */
a {
    color: #298977 !important;
}

/* ===== BOTONES ===== */
.button,
button,
input[type=submit] {
    background-color: #3BB29C !important;
    border-color: #3BB29C !important;
    color: white !important;
    border-radius: 6px;
}

.button:hover,
button:hover {
    background-color: #2a9c89 !important;
}

/* ===== INPUTS ===== */
input[type=text],
input[type=email],
select {
    border-radius: 6px;
    border: 1px solid #cccccc;
}

/* ===== FOOTER ===== */
footer {
    text-align: center;
    font-size: 12px;
    color: #666;
    margin-top: 20px;
}