:root {
  --color-blue: #1F5AC7;
  --color-dark-blue: #0D3580;
  --color-grey: #717171;
  --color-ligth: #f4f5f9;

}
body{
  font-weight: 700;
}


.banner-top{
  width: 100%;
  background-color: var(--color-dark-blue);
  padding-inline: 70px;
  height: 50px;
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  font-size: 14px;
}
.general-container{
  margin-bottom: 60px;
  margin-top: 20px;
}
.card-body{
    background-color: var(--color-ligth);
    padding: 2%;
    border-radius: 15px;
    max-width: 60vw;

  }





  .mb-5{
    margin-bottom: 5rem !important;
  }

  .subtitle{
    font-size: 16px;
    color: var(--color-ligth);
    padding: 8px;
    margin-top: 20px;
  }
  .bg-blue{
    background-color: var(--color-blue);
  }
  .bg-darkblue{
    color: white;
    background-color: var(--color-dark-blue);
  }

  .text-darkblue{
    color: var(--color-dark-blue);

  }

  .round{
    border-radius: 5px;
  }

  .round-top{
    border-radius: 5px 5px 0 0;
  }

  .fw-400{
  font-weight: 400 !important;

  }
 label{
    color: var(--color-dark-blue);
    font-size: 14px;
  }

  .border-top
  {
    border-top: 1px solid var(--color-dark-blue) !important;
  }

  .border-bottom
  {
    border-bottom: 1px solid var(--color-dark-blue) !important;
  }

  .color-grey{
    color:var(--color-grey);
  }

  .text-right{
    text-align: right;
  }
  .text-left{
    text-align: left;
  }

 

  .title{
    font-size: 30px;
    color: var(--color-dark-blue);
  }

  .logo{
    width: 160px;
  }

  .submit-button{
    width: 200px;
    height: 40px;
  }

  @media (max-width: 768px) {

    .banner-title p{
      text-align: center!important;
    }
    .banner-title div{
      text-align: center!important;
      margin-bottom: 20px;
    }
    .banner-title .title{
      font-size: 24px;
    }



    .banner-top{
      justify-content: center;
      padding: 0px !important;

    }

    .card-body{
      max-width: 90vw;
    }

    footer  span{
      text-align: center !important;
    }
  }

  footer{
    font-size: 15px !important;
    font-weight: 400;
  }

  .absolute-center{
    position: absolute !important;
    left: 25% !important;
    top: 25% !important;
  }



  .loader {
    color: var(--color-dark-blue);
    font-size: 45px;
    text-indent: -9999em;
    overflow: hidden;
    width: 1em;
    height: 1em;
    border-radius: 50%;
    position: relative;
    transform: translateZ(0);
    animation: mltShdSpin 1.7s infinite ease, round 1.7s infinite ease;
  }

  .terminos-condiciones{
    font-size: 14px;
    font-weight: 400;
    display: block;
    margin-top: 1.5rem;
    width: 100% !important;
    text-align: right;
  }
  
  @keyframes mltShdSpin {
    0% {
      box-shadow: 0 -0.83em 0 -0.4em,
      0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em,
      0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
    }
    5%,
    95% {
      box-shadow: 0 -0.83em 0 -0.4em, 
      0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 
      0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
    }
    10%,
    59% {
      box-shadow: 0 -0.83em 0 -0.4em, 
      -0.087em -0.825em 0 -0.42em, -0.173em -0.812em 0 -0.44em, 
      -0.256em -0.789em 0 -0.46em, -0.297em -0.775em 0 -0.477em;
    }
    20% {
      box-shadow: 0 -0.83em 0 -0.4em, -0.338em -0.758em 0 -0.42em,
       -0.555em -0.617em 0 -0.44em, -0.671em -0.488em 0 -0.46em, 
       -0.749em -0.34em 0 -0.477em;
    }
    38% {
      box-shadow: 0 -0.83em 0 -0.4em, -0.377em -0.74em 0 -0.42em,
       -0.645em -0.522em 0 -0.44em, -0.775em -0.297em 0 -0.46em, 
       -0.82em -0.09em 0 -0.477em;
    }
    100% {
      box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 
      0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
    }
  }
  
  @keyframes round {
    0% { transform: rotate(0deg) }
    100% { transform: rotate(360deg) }
  }
   