.group-fields{
    width:96%;
    margin:0 auto;
    padding:0.3125rem 0.5rem;
    margin-bottom: 1.2rem;
    border-radius:0.5rem;
    background-color: azure;
    border:0.0625rem solid rgb(146, 175, 244);
}
.group-fields:hover{
    background-color: rgb(236, 226, 246);
    outline-offset: 1px;
    outline-color: rgb(226, 220, 43);
    outline-style: double;
}
.fields{
    width:100%;
    height:100%;
    margin-left:0.4rem;
    margin-right:0.4rem;
    padding: 0 0.5rem;
    background-color: transparent;
}
.fields-input, .fields-select{
    border:none;
    outline: none;
    font-size:var(--fs-18);
    color: rgb(161, 14, 161);
}

/* input:focus{
    background-color: rgb(236, 226, 246);
} */

.fields-select{
    margin-left:0rem;
}
.fields-radio,.fields-checkbox{
    padding:0.625rem 0;
}
.label{
    font-size: var(--fs-14);
    font-weight: 400;
    color:rgb(186, 181, 181);
    margin-left:0.4rem;
    padding: 0 0.5rem;
}
.label-on{
    top:-0.5rem;;
    z-index:1;
    background-color: white;
}
.label-out{
    top:-1rem;;
    z-index:1;
    background-color: white;
}
.fields ul{
    list-style-type: none;
    margin-left:0.4rem;
}
.li-horizontal{
    display: inline-block;
    margin-right: 0.4rem;
}
.li-vertical{
    display:block;
}
.li-label{
    /* margin-bottom: 0.3rem; */
    margin-top: 0.3rem;
    padding: 0.1rem;
    font-size:var(--fs-18);
    color: rgb(161, 14, 161);
}

.form-title{
    text-align: center;
}
.forgetten-pwd{
    margin-top:-1.1rem;
    text-align: right;
    margin-bottom: 0.3rem;
    padding: 0 0.5rem;
    font-style: italic;
    font-weight: 100;
    font-size: var(--fs-14);
}
.forgetten-pwd a{
    text-decoration: none;
    color:azure;
}

.forgetten-pwd a::after{
    content:"";
    display:block;
    width:0%;
    height: 0.0625rem;
    text-decoration: none;
    background: #f1f1f1;
    transition: width 0.2s ease-in-out;
    margin-left:77%;
}
.forgetten-pwd a:hover::after{
    width:22%;
}
.signMeIn{
    width:99%;
    margin:0 auto;
    padding:0.3125rem 0.5rem;
    margin-top: 0.6rem;
    background-color: transparent;
    color:aliceblue;
    text-align: center;
    font-weight: 100;
    font-size: var(--fs-14);
}
.signMeIn a{
    text-decoration: none;
    color:khaki;
    font-weight: 700;
    font-size: var(--fs-16);
}
.signMeIn a:hover{
    text-decoration: underline;
    color:azure;
}

@media screen and (max-width:520px){
    .forgetten-pwd{
        padding: 0.8rem 0.9rem 0rem;
    }

    .group-fields{
        height: 3.125rem!important;
        margin-bottom: 0.3rem;
    }
    .group-fields_radio{
        height: 100%!important;
    }
} 