html, body {
  height: 100%;      
  margin: 0;          
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;  
}

.content-container {
  flex: 1;            /* este contenedor crecerá para empujar el footer abajo */
}
  .main-content {
    height: 600px;
    width: auto;
    background-color: white;
    text-align: center;
    padding: 20px;
    
}

.cuerpo{
    padding-top: 5rem;
}

.main-content {
    background-color: white;
    padding: 40px 20px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    
}

.seccion-apoyo {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin: 80px auto;
    padding: 20px;
    background-color: white;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    border-radius: 10px;
    
}

.apoyo-item {
    text-align: center;
    padding: 10px;
}

.apoyo-boton {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 15px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.apoyo-boton:hover {
    background-color: #0056b3;
}

/* Estilos para los mensajes */
.mensaje {
    padding: 10px;
    margin-top: 20px;
    border-radius: 5px;
    text-align: center;
    font-size: 16px;
}

.mensaje-exito {
    background-color: #28a745; /* Verde para éxito */
    color: white;
}

.mensaje-error {
    background-color: #dc3545; /* Rojo para error */
    color: white;
}

