:root{
    --color-bg: rgba(21, 64, 129, 0.923);
    --semi-black: rgba(0, 0, 0, 0.389);
    --main-color: rgb(24, 24, 179);
    --main-color-hover: rgb(17, 17, 119);
    --secondary-color: rgb(202, 116, 18);
    --secondary-color-hover: rgb(155, 89, 13);
}
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

.hidden{
    display: none !important;
}
body{
    background-color: var(--color-bg);
    display: flex;
    justify-content: center;   
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
}
.aviso_container{
    margin-bottom: 0.7cm;
    border-radius: 5px;
    border-bottom: rgb(1, 1, 208) 2px solid;
    width: 100%;
    padding-left: 0.5cm;
    padding-right: 0.5cm;
    max-width: 600px;
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
}
#login_form{
    min-height: 100dvh;
    width: 100%;
    max-width: 500px;
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
}
#login_form img, #registro_form img{
    width: 40%;
    margin-top: 0.5cm;
}
#registro_form{
    min-height: 100dvh;
    width: 100%;
    max-width: 500px;
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media only screen and (min-width: 500px){
    .aviso_container{
        margin-top: 0.7cm;
    }
    #login_form{
        min-height: 0;
        height: fit-content;
        margin-top: 0.7cm;
        /*max-height: 525px;*/
        padding-bottom: 0.7cm;
    }
    #registro_form{
        min-height: 0;
        height: fit-content;
        margin-top: 0.7cm;
        padding-bottom: 0.7cm;
    }
}

input{
  border: none;  
  border-radius: 0;
  border-bottom: 1px solid var(--semi-black);
  height: 1cm;
  width: 55%;
  min-width: 5cm;
  margin: 0.5cm;
  background-color: transparent;
  padding-left: 0.2cm;
  outline: none;
}

/*label form*/

.label_form{
    font-size: 0.9em;
    font-weight: 500;

}
.label_wrongpass{
    color: red;
    font-size: 0.9em;
    font-weight: 600;

}
.span_label_form{
    width:  55%;
}

@keyframes sacudir {
    0%{
        transform: translateX(-0cm);
    }
    33%{
        transform: translateX(-0.2cm);
    }
    50%{
        transform: translateX(0cm);
    }
    66%{
        transform: translateX(0.2cm);
    }
    100%{
        transform: translateX(0cm);
    }
    
}
.span_label_center{
    animation: sacudir 0.3s ease-in-out;
    width:  100%;
    text-align: center;
    height: 1.7em;
}

.form-select{
    width: 55%;
    min-width: 5cm;
    height: 1cm;
    border-radius: 2px;
}
/*divisores*/
hr{
    border: none;
    background-color: var(--semi-black);
    height: 1px;
    margin-bottom: 0.5cm;
}
.hr90{
    width: 90%;
}
.hr70{
    width: 70%;
}
.hrinv{
    background-color: transparent !important;
}

/*botones*/


form button{
    width: 55%;
    min-width: 5cm;
    border: none;
    border-radius: 2px;
    
    height: 1cm;
    color: white;
    font-weight: 600;
    font-size: 0.9em;
}

.btn_primary{
    background-color: var(--main-color);
}
.btn_primary:hover{
    background-color: var(--main-color-hover);
}
.btn_secondary{
    background-color: var(--secondary-color);
}
.btn_secondary:hover{
    background-color: var(--secondary-color-hover);
}


