header{
    padding-block: 1.2%;
}
header a{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 40px;
    transition: 0.2s;
}
header a:hover{
    transform: scale(1.03);
    cursor: pointer;
}
header h1{
    font-size: 1.6em;
}
header img{
    width: 60px;
}



.botones-container{
    align-self: center;
    justify-self: center;
    display: flex;
    width: 37%;
    border: 2px solid black;
    margin-block: 4% 1%;
}
.boton_login, .boton_registro{
    display: flex;
    flex-direction: column;
    padding: 2% 5%;
    font-size: 1.1em;
    font-weight: bold;
    width: 50%;
    text-align: center;
    align-items: center;
    justify-content: center;
}
.boton_login{
    background-color: var(--color2);
    color: var(--color1);
}
.boton_registro{
    background-color: var(--color1);
    color: var(--color2);
}




main{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-self: center;
}
.form-container{
    align-self: center;
    justify-self: center;
    padding: 0% 5% 2% 5%;
    border-radius: 15px;
    margin-block: 2%;
    width: 57%;
}
#formulario-login{
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    gap: 30px;
}
.input-container{
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 10px;
    position: relative;
}
.input-container p{
    font-size: 1.4em;
    font-weight: bold;
}
.input{
    width: calc(100% - 30px);
    padding: 10px 15px;
    border: 1px solid rgba(66, 66, 66, 0.582);
    box-shadow: 2px 2px 2px 0px rgba(109, 109, 109, 0.452);
}
.input-container select{
    width: 100%;
}
.dato-admin{
    color: rgb(0, 20, 199);
    font-size: 1.2em;
}
.P-error{
    color: red;
    font-size: 1em !important;
    font-weight: lighter !important;
    font-style: italic;
    position: absolute;
    top: 5.9rem;
    left: 0;
    z-index: 30;
}



.boton-submit{
    margin-block-start: 2%;
    padding: 2% 4%;
    color: white;
    background-color: rgba(57, 57, 57, 0.200);
    align-self: center;
    justify-self: center;
    width: 45%;
    font-size: 1.2em;
    font-weight: bold;
    transition: 0.1s;
    border-radius: 10px;
}
.boton_habilitado{
    background-color: black;
}
.boton_habilitado:hover{
    background-color: rgb(82, 82, 82);
    cursor: pointer;
}
.boton_habilitado:active{
    background-color: white;
    color: black;
}
.terminos-container{
    display: flex;
    font-weight: bold;
    gap: 10px;
}
.terminos-container label{
    font-size: 1.2em;
    font-weight: lighter;
}
.terminos-container label span{
    font-size: 1em;
    color: rgb(71, 71, 230);
    cursor: pointer;
    text-decoration: underline;
}


@media screen and (max-width:1024px) {
    .botones-container{
        width: 50%;
    }
    .form-container{
        padding: 0% 5% 2% 5%;
        width: 70%;
    }
}


@media screen and (max-width:600px) {
    main{
        margin-block: 2%;
    }
    header{
        padding-block: 2%;
    }
    header img{
        width: 45px;
    }    
    header h1{
        font-size: 1.4em;
    }
    .botones-container{
        width: 80%;
        margin-block: 3%;
    }
    .form-container{
        padding: 0% 5% 2% 5%;
        width: 80%;
    }   
    .input-container input, .input-container select{
        padding: 2.5% 3%;
    }
    .boton-submit{
        width: 55%;
    }
}