html{
    font-size: 62.5%;
    box-sizing: border-box;

}
*::after,*::before,*{
    margin: 0;
    padding: 0;
    box-sizing: inherit
}

body{
    font-size: 1.6rem;
    min-height: 100vh;
    position: relative;
    font-family: "Open Sans", sans-serif;


}

.cont{
    width: 90%;
    max-width: 50rem;
    /* height: 50rem; */
    /* background-color: aqua; */
    margin: 5rem auto 0 auto;
    position: relative;
}
.cont-m{
        width: 90%;
        max-width: 40rem;
}
.foot-cont{
       width: 90%;
    max-width: 50rem;
    height: 20rem;
    /* background-color: #9e9e9e;  */
    margin: 0 auto;
    padding: 2rem;
    font-size: 18px;
}
.tit-foot{
    text-align: center;
    font-weight: 600;
}
.si{
    text-align: center;
    font-size: 15px;
    margin-top: 1rem;
    font-weight: 600;
}
.y{
    text-align: center;
    font-size: 14px;
    margin-top: 2rem;
}
.y span{
    display: block;
    margin-top: 1rem;
}
.si span{
    color: #E3087E;
    font-weight: normal;
}
.lg{
    display: flex;
    align-items: center;
    justify-content: center;
}
.lg img{
    width: 70%;
}

.cont-fm{
    width: 100%;
    height: 30rem;
    border: 1px solid #333;
    margin-top: 5rem;
}
form{
    height: 100%;
    width: 100%;
}
.colum{
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    /* background-color: aquamarine; */
}
.usr{
    flex: 1;
    border-bottom: 1px solid #333;
    display: flex;
    align-items: center;
    padding: 0 2rem;
    position: relative;
    gap: 1rem;
}
.usr-m{
    flex: .5;
}
.usr input{
    width: 100%;
    height: 5rem;
    border: none;
    background-color: transparent;
    outline: none;
    font-size: 20PX;

    /* background-color: #E3087E; */

    /* padding-left: 2rem; */
}
label{
    position: absolute;
    left: 7rem;
    color: #9e9e9e;
    pointer-events: none;
    transition: all 0.2s ease-in-out;
    top: 4rem;
    
}

.label-js1{
    left: 10rem;
}
.usr input:focus{
       border-bottom: 1px solid #E3087E;
}
.sub{
    flex: 1;
    background-color: red;
}
.sub input{
    width: 100%;
    height: 100%;
    border: none;
        font-size: 14px;
    background-color: #FDCCE4;
    color: #9F9F9F;
}
.usr img{
    width: 4rem;
}


.usr input:focus + label,
.usr input:not(:placeholder-shown) + label {
  top: 2rem;
  font-size: 12px;
  color: #E3087E;
  /* color: #0048db; */
}

#nipper{
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    z-index: 999;
}

#err{
    color: #E3087E;
    font-size: 12px;
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
}

#nipper img{
    width: 10rem;
}

.ques{
    display: flex;
    align-items: center;
    font-size: 14px;
}
.ques img{
    width: 1.8rem;
}

.subm{
    background-color: #E3087E !important;
    color: #FFF !important;
}
.sub-m{
    flex: .8;
}
.regresar{
    text-align: center;
    background-color: #9e9e9e;
    flex: .3;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    font-size: 15px;  
}

.incorrect{
    position: absolute;
    bottom: 1rem;
    width: 100%;
    height: 4rem;
    background-color: #333;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media(min-width:998px){
    .incorrect{
        width: 20rem;
        right: 2rem;
        bottom: none;
        top: 10rem;
    }
}
.recor{
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    color: #E3087E;
    font-size: 15px;
    cursor: pointer;
}


.label-js1-m{
    top: 6rem;
}
.textred{
   flex: .4;
       background-color: #c53c39;
       text-align: center;
       font-size: 15px;
       padding: .5rem 0;
       color: #fff;
}
.regresar-m{
    background-color: #ededed;
    color: #333;
}

.incorrect-m{
    width: 100%;
    padding: 0 1rem;
}

@media(min-width:998px){
.incorrect-m{
    width: auto;
    padding: 0 1rem;
}
}