body {
      margin: 0;
      font-family: Arial, sans-serif;
      background: linear-gradient(-45deg, #00507D, #F9B233, #00507D, #F9B233);
  background-size: 400% 400%;
  animation: gradientMove 15s ease infinite;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100vh;
    }
    @keyframes gradientMove {
        0% {background-position: 0% 50%;}
        50% {background-position: 100% 50%;}
        100% {background-position: 0% 50%;}
    }
    .container {
      width: 100%;
      max-width: 700px;
      background: white;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    }
    .header {
      background: #005692;
      color: white;
      padding: 20px;
      text-align: center;
      font-size: 22px;
      font-weight: bold;
    }
    .form-content {
      padding: 30px;
    }
    .form-group {
      margin-bottom: 20px;
    }
    label {
      display: block;
      margin-bottom: 6px;
      font-weight: bold;
      color: #333;
    }
    input, textarea {
      width: 100%;
      padding: 12px;
      border: 2px solid #ddd;
      border-radius: 8px;
      font-size: 15px;
      box-sizing: border-box;
      transition: border-color 0.3s;
    }
    input:focus, textarea:focus {
      border-color: #a30060;
      outline: none;
    }
    textarea {
      resize: vertical;
      min-height: 120px;
    }
    button {
      width: 100%;
      padding: 14px;
      background: #a30060;
      color: white;
      border: none;
      border-radius: 8px;
      font-size: 17px;
      cursor: pointer;
      transition: background 0.3s;
    }
    button:hover {
      background: #87004e;
    }
    .margin10{
        margin:10px;
    }
    .flex{
    display: flex;
}
.flexCenter{
    justify-content: center;
}
.alingCenter{
    justify-content: center;
    align-items: center
}
.divContentLogin{
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}
.divCenter{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.flexColumn{
    flex-direction: column;
}
html, body,.heightFull{
    height: 100%;
}
.CardLogin{
    background: white;
    width: 900px;
    height: 570px;
    border-radius: 20px;
    box-shadow: 10px 10px 10px #5b5f60;
}
.width50{
    width: 50%;
}
.width90{
    width: 90%;
}
.btnEmail{
    border-radius: 20px;
}
.margin1{
    margin: 15px;
}
/*  Contenido imagenes   */

.imgLogo{
    border-radius: 20px 0px 0px 20px;
    width: 100%;
    height: 100%;
}
.imgTitulo{
    width: 100%;
}
.backgroundImgs{
    display: block;
    background: white;
    border-radius: 20px 0px 0px 20px;
}
.ResMovilImg{
    display: block;
}
/* INPUTS MODAL VERIFICACION */
.inputCodigo{
    outline: none;
    border: none;
    border-bottom: 2px solid;
    width: 50px;
    margin: 5px;
    text-align: center;
    font-size: 30px;
}
.MensajeError{
    color:red;
    display: none;
}
#ModalMensaje .modal-content {
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    border: none;
    background: #ffffff;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

/* Header: simple, elegante */
#ModalMensaje .modal-header {
    border-bottom: none;
    background: linear-gradient(135deg, #4a00e0, #8e2de2);
    padding: 1rem;
    display: flex;
    justify-content: flex-end;
}


#ModalMensaje .btn-close:hover {
    opacity: 1;
}

/* Body: texto grande y visual */
#ModalMensajeTexto {
    text-align: center;
    font-size: 1.75rem;
    font-weight: 600;
    color: #333;
    margin: 20px;
    line-height: 1.4;
}

/* Footer: limpio y bien alineado */
#ModalMensaje .modal-footer {
    border-top: none;
    background: #f7f7f7;
    justify-content: center;
    padding: 1.5rem;
}

/* Botón: moderno y animado */
#ModalMensaje .btn-primary {
    background: linear-gradient(307deg, #1f16d2, #988fd9);
    border: none;
    color: white;
    padding: 12px 35px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    box-shadow: 0 5px 15px rgba(255, 65, 108, 0.4);
    transition: all 0.3s ease;
}

#ModalMensaje .btn-primary:hover {
    
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 8px 20px rgba(255, 65, 108, 0.5);
}
@media (max-width: 768px){
    .CardLogin{
        width: 100%;
    }
        
}

@media (max-width: 600px){
    html, body,.heightFull{
        width: 100%;
    }
    .ResMovilImg{
        display: none;
    }
    .CardLogin{
        width: 100%;
    }
    .width50{
        width: 100%;
    }
    .divContentLogin{
        justify-content: space-evenly;
    }
        
}
