/*Footer*/
footer {
    justify-content: space-between;
    display: flex;
    height: 30%5;
    margin-top: 20px;
    background-color: #1c1e22;
    justify-content: center;
    flex-wrap: wrap;
}
.footerContainers{
    margin: 10px;
    margin-top: 20px;
}
#divF1{
    width: 25%;
}
#divF2{
    justify-content: right;
    width: 30%;
    text-align: center;
}
#divF3{
    width: 35%;
    height: 80%;
}
#frase{
    margin-left: 5px;
}
button {
    margin-top: 15px;
    background-color: #f9532d;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    color: #bd3434;
    background-color: #244D61;
    box-shadow: 0 0 10px #244D61;
    transition: all .2s ease-in-out;
}

button:active {
    transform: scale(0.90);
}

/* Estilos para el modal */

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.7);
    border-radius: 15px;
    backdrop-filter: blur(20px);
    z-index: 9999;
}

.modal-content {
    background-color: #9191911f;
    border-radius: 15px;
    margin: 10% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 60%;
    
    text-align: center; /* Centrar el contenido del modal */
    
    border: 0px;
}
.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    margin-top: -20px;

}

.close:hover,
.close:focus {
    color: black;
}

/* Estilos para el formulario dentro del modal */
/* Estilos para el formulario dentro del modal */
form {
    display: flex;
    flex-direction: column;
    
    border-radius: 15px;
    padding: 10px;
}

form button {
    width: 18%;
    margin-right: auto;
    margin-left: auto;
    font-size: medium;
}

#cancelarform {
    background-color: red;
}

#cancelarform:hover {
    background-color: gray;
}

#submit {
    background-color: #15a54a;
}

#submit:hover {
    background-color: #054903;
    color:white;
}

label {
    margin-bottom: 8px;
}

footer input, textarea {
    width: 70%;
    padding: 8px;
    margin-bottom: 16px;
    box-sizing: border-box;
    border-radius: 10px;
    margin-right: auto;
    margin-left: auto;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

textarea {
    /* Ajusta la altura del textarea según tus necesidades */
    height: 100px;
}

#buttons {
    display: flex;
    justify-content: space-around;
}
/*END footer*/

.toast {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #323232;
  color: white;
  padding: 12px 24px;
  border-radius: 5px;
  font-size: 16px;
  z-index: 9999;
  opacity: 0.95;
  box-shadow: 0px 4px 12px rgba(0,0,0,0.3);
}
.toast-success {
  background-color: #28a745;
}
.toast-error {
  background-color: #dc3545;
}
