
*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
:root{
    --verdeDekids: #9BCE03;
    --negroPuro: #000000;
    --blancoFondos: #FFFFFF;
    --azulNavegacion: #1D0B35; 
}
html{
    font-size: 62.5%;
    font-family: 'Nunito', sans-serif;
}
header{
    width: 100%;
    height: 100px;
    background-color: var(--azulNavegacion);
}
body{
    background-image: url(../img/Pattern.jpg);
    color: var(--blancoFondos);
}
.menu{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
figure{
    width: 100px;
    padding: 10px;
    text-align: center;
}
#logo{
    width: 100%;
    height: 100%;
}
.case-Login{
    margin-right: 10px;
}
.case-Login a{
    margin: 10px;
    font-size: 1.6rem;
    text-decoration: none;
    color: var(--blancoFondos);
    
}
.main-container{
    display: flex;
    width: 100%;
    margin-top: 100px;
}
main{
    display: flex;
    flex-direction: column;
}
.text-form{
    width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.text-form h1,h2{
    text-align: center;
    width: 100%;
}
.text-form h1{
    font-family: 'Zen Dots';
    font-size: 2.8rem;
    color: var(--verdeDekids);
    margin-bottom: 10px;
}
.text-form h2{
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    color: #FFFFFF;
}
.form-container{
    display: flex;
    width: 100%;
    justify-content: space-evenly;
    margin-top: 20px;
}
.container-registro, .container-login{
    width: 40%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.container-registro h3, .container-login h3{
    margin-bottom: 10px;
}
.boton1{
    background-color: var(--verdeDekids);
    border-radius: 10px;
    width: 100px;
    height: 30px;
    border: none;
    margin-top: 10px;
    color: var(--blancoFondos);
    transition: 800ms;
    box-shadow: inset 0 -3em 3em rgb(0 0 0 / 10%), 0.3em 0.3em 1em rgb(0 0 0 / 30%);
}
.boton1:hover{
    transform: scale(1.15);
    cursor: pointer;
}
#texto{
    width: 200px;
    height: 30px;
    border-radius: 10px;
    padding: 5px;
    border: none;
    box-shadow: inset 0 -3em 3em rgb(0 0 0 / 10%), 0.3em 0.3em 1em rgb(0 0 0 / 30%);
}
.container-img{
    width: 40%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.container-img figure{
    width: 100%;
    max-width: 500px;
    display: flex;
    flex-direction: column ;
}
.container-img figure img{
    width: 80%;
}
