@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600&display=swap");

:root {
  --color_pestanainactiva: #0F9F9F;
  --color_pestanaactiva: #0776AB;
  --color_separacion: #73B5D8;
  --color_login: #7ADCDE;
}

* {
  margin: 0;
  padding: 0;

  font-family: "Montserrat", sans-serif;
}

body{
    overflow-x: hidden;
}

#loader_cont {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #fff;

  transition: 0.3s ease all;

  z-index: 1;
}

#loader {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  width: 100px;
  height: 100px;
  margin: -76px 0 0 -76px;
  border: 12px solid #f3f3f3;
  border-radius: 50%;
  border-top: 12px solid var(--color_pestanainactiva);
  -webkit-animation: spin 1.5s linear infinite;
  animation: spin 1.5s linear infinite;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.animate-bottom {
  position: relative;
  -webkit-animation-name: animatebottom;
  -webkit-animation-duration: 1s;
  animation-name: animatebottom;
  animation-duration: 1s;
}

@-webkit-keyframes animatebottom {
  from {
    bottom: -100px;
    opacity: 0;
  }
  to {
    bottom: 0px;
    opacity: 1;
  }
}

@keyframes animatebottom {
  from {
    bottom: -100px;
    opacity: 0;
  }
  to {
    bottom: 0;
    opacity: 1;
  }
}

a {
  text-decoration: none;
  color: orange;
}

h1 {
  font-size: 20px;
}

h3 {
  font-size: 18px;
}
p {
  font-size: 14px;
}

.container {
  width: 100%;
  max-width: 1170px;
  margin: auto;

  padding-left: 30px;
  padding-right: 30px;
  box-sizing: border-box;
}

.logo img {
  
  width: 100%;
  max-width: 350px;
  margin: 40px 0px;
  margin-bottom: 9px;
}

.enlace {
  display: flex;
  justify-content: end;
  gap: 18px;
}

.enlace a {
  padding: 6px 25px;
  background-color: var(--color_pestanainactiva);
  color: #fff;
  border-radius: 10px 10px 0px 0px;

  transition: 0.3s ease all;
}

.enlace a.active,
.enlace a:hover {
  background-color: var(--color_pestanaactiva);
}

.banner {
  box-shadow: 0 4px 40px 0px rgb(0 0 0 / 9%);

  width: 100%;
  height: 70px;

  background-image: url("./banner.jpg");

  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;

  position: relative;

  margin-bottom: 40px;
}

.banner .separador {
  width: calc(100% - 200px);
  height: 10px;
  background: linear-gradient(90deg, var(--color_pestanaactiva) 15%, var(--color_separacion) 15%);
  position: absolute;
  bottom: -10px;
  right: 0;
}

.contenido {
  display: flex;
  height: auto;
  margin-bottom: 40px;
}

.contenido > div {
  padding: 30px;
}

.form_login {
  width: 100%;
  max-width: 450px;
  position: relative;
  padding-right: 0px;
}

.contenido .cont_interno {
  width: calc(100% - 450px);

  padding-left: 0px;

  display: flex;

}

.form_login .caja_texto {
  box-sizing: border-box;
  height: 30px;
  width: 220px;
  line-height: 30px;
  padding: 0px 5px;
  outline: none;
  border-radius: 5px;
  border-style: solid;
  border-width: 1px;

  background-color: transparent;
  border-color: #fff;
}

.contenido h1 {
  color: #454545;
  position: relative;
  margin-bottom: 25px;
}

.contenido h1::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: var(--color_pestanaactiva);

  bottom: -2px;
  left: 0;

  transition: 0.4s ease all;
}

.form-row {
  display: flex;
  margin-bottom: 15px;

  justify-content: space-between;

  align-items: center;
}

.boton {
  background: transparent;
  outline: none;
  border: none;
}

.grupo_submit {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

footer {
  padding: 20px 0px;
  background: #22262E;
}

footer p {
  text-align: center;
  color: white;
}

.boton {
  min-height: 30px;
  border-radius: 50px;
  background-color: var(--color_pestanaactiva);
  color: #fff;

  width: 220px;

  cursor: pointer;

  transition: 0.3s ease all;
}

.boton:hover {
  background-color: var(--color_pestanainactiva);
  color: #fff;
}

.btns {
  display: flex;
  width: 100%;
  gap: 10px;
}
.btns .boton {
  width: 50%;
}



body
  > div.container.contenido
  > div.form_login
  > form
  > div.grupo_submit
  > button {
  margin-bottom: 10px;
}

.separador_botones {
  width: 100%;
  height: 1px;
  margin-bottom: 10px;
  background-color: #eee;
}


.hidden_menu{
    position: absolute;
    background-color: #fff;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    z-index: 2;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;

    transition: .6s ease all;
}
.show{
    right: 0px !important;
}
.icon{
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    
    z-index: 3;
    font-size: 30px;
    color: #454545;

    display: none;
}
.form_login h1 br{
    display: none;
}
.boton{
    padding: 5px 10px;
}
@media only screen and (max-width: 673px){
    .icon{
        display: block;
    }
    .banner,
    .container.enlaces{
        display: none;
    }

    body .contenido > div{
      width: calc(100% - 30px) !important;
      padding: 15px !important;
    }
    .contenido{
        flex-direction: column;
    }
    .contenido > div{
        width: 100% !important;
        padding: 0px !important;
    }
    .cont_interno{
        margin-bottom: 30px;
    }
    .form_login::before{
        content: inherit;
    }

    .logo img{
        width: 70%;
    }
    .enlaces{
        display: none;
    }
    body > div:nth-child(2){
        margin-bottom: 30px;
    }

    .logo{
        position: relative;
    }
    .logo img {
        margin-bottom: 40px !important;
    }
    h1{
        font-size: 18px;
    }
    .form_login h1 br{
        display: block;
    }
    .form-row{
        flex-direction: column;
        align-items: flex-start !important;
    }
    .form-row h5{
        margin-bottom: 10px;
    }
    .form_login .caja_texto{
        width: 100% !important;
    }
    body > div.container.contenido > div.form_login > form > div.grupo_submit > button{
        width: 100% !important;
    }
}


body > div.container.contenido > div.cont_interno > div:nth-child(1){
  background-color: #ededed;
}

body > div.container.contenido > div.cont_interno{
  padding-right: 0px;
  padding-top: 0px;
  padding-bottom: 0px;
}

body > div.container.contenido > div.cont_interno > div:nth-child(1){
  padding: 10px;
  padding-top: 30px;
}
body > div.container.contenido > div.cont_interno > div:nth-child(2){
  padding: 10px;
  padding-top: 30px;
}

body > div.container.contenido > div.form_login > h1::before{
  background-color: #fff;
}




.form_login{
  background-color: var(--color_login);
  border-radius: 20px;
}

.container.contenido h1{
  color: #2a4b8e;
}



@media only screen and (max-width: 900px){
  .contenido{
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
  .contenido > div{
    width: 100% !important;
  }
  body > div.container.contenido > div.cont_interno > div:nth-child(1),
  body > div.container.contenido > div.cont_interno > div:nth-child(2){
    padding-bottom: 30px;
  }
}

@media only screen and (max-width: 350px){
  .container{
    padding-left: 15px;
    padding-right: 15px;
  }
  body > div.container.contenido > div.cont_interno{
    flex-direction: column;
  }
  body > div.container.contenido > div.cont_interno > div:nth-child(1){
    width: initial !important;
  }
  .cont_interno{
    margin-bottom: 0px;
  }
  
}

#responsive_menu a{ 
  color: var(--color_pestanainactiva);
}

body > div.container.contenido > div.cont_interno > div:nth-child(1){
  width: 270px;
}

@media only screen and (max-width: 400px){
  .cont_interno > div:nth-child(2) h1{
    visibility: hidden;
  }
  .form_login h1{
    text-align: center;
    padding-bottom: 10px;
  }
  .form_login h1 br{
    display: none;
  }
}