@font-face {
	font-family: 'Poppins';
	font-style: normal;
	font-weight: 400;
	src: local('Poppins'), url('/public/mobile/font/Poppins-Regular.ttf');
}
@font-face {
	font-family: 'Poppins SemiBold';
	font-style: normal;
	font-weight: 600;
	src: local('Poppins SemiBold'), url('/public/mobile/font/Poppins-SemiBold.ttf');
}

body { 
    font-family: 'Poppins';
    font-size: 22px;
    line-height: 36px;
    margin: 0;
}

.header {
    background-color: #009dd3;
    height: 80px;
    background-image: url('/public/mobile/img/svg/logo.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: auto 40px;
    text-indent: -9999px;
    overflow: hidden;
}
.wrap-content {
    margin: 0 auto;
    max-width: 1330px;
    padding: 0 25px;
    /* height: calc(100vh - 180px); */
}
.footer {
    font-size: 11px;
    color: #4e4e4e;
    text-align: center;
    height: 40px;
    max-width: 1330px;
    border-top: 2px solid #E2E2E2;
    padding-top: 5px;
    margin: 0 auto;
}
.msg-holder {
    display: flex;
    justify-content: center;
    align-items: center;
    /* height: 100%; */
    margin: 25px;
}
.msg {
    display: flex;
    padding: 25px;
    background-color: #EBF7FC;
    border-radius: 4px;
    background-image: url('/public/mobile/img/svg/icon-info.svg');
    background-repeat: no-repeat;
    background-position: 30px center;
    background-size: 70px;
    min-height: 90px;
    padding-left: 130px;
    align-items: center;
}
.txt_head {
    text-align: center;
    font-size: 26px;
    font-family: 'Poppins SemiBold';
    margin: 30px 0;
}
.txt_txt {
    font-size: 18px;
    margin: 20px 0;
}
.box__title {
    font-size: 28px;
    font-family: 'Poppins SemiBold';
    text-align: center;
    margin-top: 20px;
}
.form-register {
    background-color: #EBF7FC;
    padding: 25px;
    margin: 25px auto;
    max-width: 400px;
}
.input-wrapper {
    margin-bottom: 25px;
}
.input-wrapper .input-error {
    font-size: 18px;
    color: #e13d04;
}
.input-wrapper label {
    display: block;
    text-transform: uppercase;
    font-size: 12px;
    line-height: 15px;
}
.input-wrapper input[type="password"] {
    background-color: #ffffff;
    border: 1px solid #9daabb;
    border-radius: 4px;
    padding: 10px 20px;
    margin-top: 5px;
    width: calc(100% - 40px);
}
.input-wrapper input[type="submit"] {
    background-color: #93c01f;
    letter-spacing: 0.2rem;
    color: #ffffff;
    border: none;
    font-family: 'Poppins SemiBold';
    text-transform: uppercase;
    border-radius: 4px;
    padding: 10px 20px;
    margin: 10px 0;
    width: 100%;
}
.error {
    display: flex;
    max-width: 400px;
    margin: 25px auto;
    padding: 25px;
    background-color: #fddcd0;
    border-radius: 4px;
    background-image: url('/public/mobile/img/svg/icon-error.svg');
    background-repeat: no-repeat;
    background-position: 30px center;
    background-size: 70px;
    min-height: 90px;
    padding-left: 120px;
    align-items: center;
}