#loading{
    background-color: #FFF;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	align-items: center;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
    opacity: 0.6;
    display: none;
}
#loading.active{
	display: flex;
}
#loading img, #loadingapi img{
    max-width: 100%;
}


body {
    margin: 0px;
    padding: 0px;
}
.container{
    position: fixed;
	width: 100%;
	height: 100%;
	margin: 0px auto;
    display: flex;
    /* align-items: center; */
    justify-content: center;
    background-color: #f7f7f7;
    overflow-y: auto;
}
@media only screen and (max-width: 639px){
    .container{
        /* height: auto;
        overflow-y: auto; */
    }
}

.content{
	position: relative;
	width: 100%;
    max-width: 880px;
    height: max-content;
    min-height: 480px;
	margin: 0px auto;
    padding: 24px;
    background-color: #f7f7f7;
    border-radius: 20px;
}
@media only screen and (max-width: 639px){
    .content{
        min-height: 100vH;
        border-radius: 0px;
    }
}

.content-header{
	text-align: center;
}
@media only screen and (max-width: 639px){
    .content-header{
        text-align: center;
    }
}

.content-body{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    padding: 24px 0px;
}
.content-body.hide {
    display: none;
}

.content-body p{
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;

    text-align: left;

    color: #537D35;
}
@media only screen and (max-width: 639px){
    .content-body{

    }
}

/* ================== Header ================== */
.headertitle{
	position: relative;
    display: flex;
	width: 100%;
	margin: auto 0;
}
.headertitle svg{
    margin: 0px 26px 0px 0px;

    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 24px;

    color: #282828;
}
.headertitle h1{
    margin: 0px;
    padding: 0px;

    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 24px;

    color: #282828;
}
@media only screen and (max-width: 639px){
    .headertitle{
        position: relative;
        width: 100%;
        margin: auto 0;
        text-align: center;
    }
    .headertitle h1{
        font-size: 36px;
        font-weight: 700;
    }
}


/* ================== Form Login ================== */
.content-form-container{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 24px 0px;
}

.content-form-container .form-block{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-right: 28px;
    margin-bottom: 22px;

    font-family: "Open Sans",sans-serif;
	font-size: 14px;
    font-weight: 700;
    color: #FFF;
	text-align: center;
}

.content-form-container .form-block:last-child{
    padding-right: 0px;
}

.content-form-container label{
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: 17px;

    text-align: left;

    color: #282828; 
}

.content-form-container input{
    width: 100%;
    margin: 0px 28px 0px 0px;
    padding-left: 0px;
    background: #F4F2EC;
    border-radius: 4px 4px 0px 0px;

    font-family: 'Neue Metana';
    font-style: normal;
    font-weight: 400;
    font-size: 22px;
    line-height: 30px;
    border: 0px;
    border-bottom: 1px solid #505050;

    color: #505050;
}

.content-form-container input:focus{
    outline: none;
}

.content-form-container .form-footer{
    margin: 0px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px 0px;

    text-align: center;
}

.content-form-text_primary{
    margin-bottom: 30px;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;
    text-align: justify;
    color: #505050;
}

.content-form-text_secondary{
    margin-left: 80px;
    margin-bottom: 20px;
    font-family: 'Inter';
    font-style: italic;
    font-weight: 700;
    font-size: 18px;
    line-height: 22px;
    text-align: justify;    
    color: #505050;
}

.form-input-button{
    width: 100%;
    max-width: 346px;
    height: 48px;
    margin: 32px auto 24px;
    opacity: 1;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 11px 8.8px;

    background: #537D35;
    border: 1px solid #537D35;
    border-radius: 26px;

    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    font-size: 12px;
    line-height: 16px;

    text-align: center;
    letter-spacing: 0.07em;
    text-transform: uppercase;

    color: #FFFFFF;
    cursor: pointer;
}

@media only screen and (max-width: 639px){
    .content-form-container button{
        width: 90%;
    }
}



.msg_success {
    background: #f7f7f7;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	display: flex;
    flex-direction: column;
	align-items: center;
	flex-wrap: wrap;
	justify-content: space-evenly;
}
@media only screen and (max-width: 639px){
    .msg_success {
        border-radius: 0px;
        min-height: 100vh;
    }
}


.msg_success.active.novisible{
    opacity: 0;
    transition: opacity .5s; 
}

.msg_success.active{
	display: flex;
}

.msg_success_title{
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 32px;
    line-height: 36px;
}

.msg_success_text{
    margin: 0px auto;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 30px;
    line-height: 42px;
    display: flex;
    align-items: center;
    text-align: center;    
    color: #13222D;
}


.hide {
    display: none;
}

.novisible {
    opacity: 0;
    transition: opacity .5s;  
}
