 /* Reseteo de estilos básicos */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
    line-height: 1;
}

body {
    /*background: linear-gradient(135deg, #6D83F2, #9A68FF);*/
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    color: #333;
}
h4{
 font-size: 24px;
 width: 100%;
 color: #FA4540;
 border-bottom: 1px solid #FA4540 !important;
 margin-bottom: 10px;
}
 
h5{
 font-size: 18px;
 text-align: center;
 width: 100%;
}
.logo {
            max-width: 50%; /* Limitar el ancho máximo de la imagen al 70% */
            display: block; /* Convertir la imagen en un bloque */
            margin: 0 auto; /* Centrando la imagen */
        }
.volver{
    width: 30%;
    padding: 15px;
    /*background: linear-gradient(135deg, #6D83F2, #9A68FF);*/
    background-color: #87C687;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.2em !important;
    transition: background 0.3s ease, transform 0.2s ease;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

#container {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    /*max-width: 500px;*/
    width: 100%;
    animation: fadeIn 0.8s ease-in-out;
}
#contenedor{
 width: 90%;
 margin: 0px auto;
}
 .btn {
    padding: 6px 10px !important;
    border: none !important;
    border-radius: 4px !important;
    cursor: pointer !important;
    transition: background-color 0.3s !important;
}
.btn-add {
    background-color: #FA4540;
    color: white;
    margin-bottom: 20px;
}
.btn-gess{
    background-color: #BFBFBF;
    color: white;
    margin-bottom: 20px;
}
.btn-add:hover {
    background-color: #c82333;
    cursor: pointer;
}
.btn-action {
    background-color: #e9c0c5 !important;
    color: #721c24 !important;
    margin-right: 0px !important;
}
.btn-action:hover {
    background-color: #e9c0c5;
}
.btn-less{
    background-color: #FA4540;
    padding: 0px 2px;
    border: none !important;
    border-radius: 4px !important;
}
 .derecha{
     float: right;
 }
 .izquierda{
     float: left;
 }
 .centro{
  text-align: center;
  
 }
/* código para móviles*/

/*@media (min-width: 900px) {
    .container {
        padding: 20px;
        width:90%;
        margin-left:5%;
    }

    h2 {
        font-size: 1.5em !important;
    }

    button {
        font-size: 1em !important;
    }
    
    #contenedor{
      width: 50%;
      margin: 0px auto;
     }
     
    
}*/





