:root {
    --color-primary: #254A56:
    --color-primary-dark: #FCD947:
    --color-secondary: #4B8799:
    --color-secondary-dark: #EAE3C9:
    --color-blue: #93BAC1:
}

*{
   
    font-family: Urbanist;
}

body{
    background-image: url(../imagenes/Niños_asset1.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
}


.caja-inicio-registro {
    width: 22em;
    height: 30em;
    background-color: #254a56cb;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
    border-radius: 20px;
    padding: 2rem;
    
}
.titulo-caja{
    display:flex;
    justify-content:center;
    font-size: 16px;
    color: #FCD947;

    
}
.caja-registro input{
    width: 95%;
    padding: 0.6rem;
    margin-bottom: 1.5rem;
    border-radius: none;
    border-radius: 10px;
    background-color: #ffffffb6;
    font-size: 14px;
    
}
.caja-form-botones{
    display: flex;
    flex-direction:row;
    justify-content: center;
    align-items: center;
    
    
}.caja-form-botones button{
    background-color: #fcd847c7;
    width: 40%;
    margin-bottom: 20px;
    font-size: 23px;
    font-weight: 600;
    color: #254A56;
    padding: .4rem;
    border: 2px solid ;
    border-radius:15px;
    cursor: pointer;
    margin-right: 30px;
    border-color: #254A56;
    
}

.caja-form-botones button:hover {
    background-color: #254a56cc;
    border-color: #254A56;
    color: #FBE27A;
    border-color:#FCD947;
    text-shadow: 0 -1px 0 #254A56, 0 1px 0 #FBE27A;
}
.caja-form-botones a{
    font-size: 20px;
    color: #FCD947;
    font-weight: 600;
    margin-bottom: 15px;

}

.caja-form-botones a:hover{
    color:#b7edffb0;
}
.imagen {
    
    display: flex;
    flex-direction:row;
    justify-content: center;
    align-items: center;
}
.imagen img{
    width: 35%;
}

@media (max-width: 1024px){

    .caja-inicio-registro {
        width: 22em;
        height: 28em;
        
    }
    
    .caja-registro input{
        padding: 0.5rem;
    }
    .caja-form-botones button{
        font-size: 20px;
    }
    
    .caja-form-botones a{
        font-size: 18px;
        margin-bottom: 0;
    
    }
    
    .imagen img{
        width: 32%;
    }
}

@media (max-width: 425px){

    .caja-inicio-registro {
        width: 14em;
        height: 22em;
        
    }
    .titulo-caja{
        font-size:10px
    }
    
    .caja-registro input{
        padding: 0.3rem;
    }
    .caja-form-botones button{
        font-size: 14px;
    }
    
    .caja-form-botones a{
        font-size: 12px;
        margin-bottom: 0.6em;
    
    }
    
    .imagen img{
        width: 32%;
    }
}