@font-face {
	font-family: Roboto-Black;
	src: url(fonts/Roboto/Roboto-Black.ttf)
}

@font-face {
	font-family: Roboto-Bold;
	src: url(fonts/Roboto/Roboto-Bold.ttf)
}

@font-face {
	font-family: Roboto-Light;
	src: url(fonts/Roboto/Roboto-Light.ttf)
}

@font-face {
	font-family: Roboto-Medium;
	src: url(fonts/Roboto/Roboto-Medium.ttf)
}
@font-face {
	font-family: Roboto-Regular;
	src: url(fonts/Roboto/Roboto-Regular.ttf)
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box
}

.banner-img {
    width: 100%;
    margin: 0 auto;
    margin-top: 15px;
    margin-bottom: 15px;
}
p.note {
    font-family: Roboto-Regular;
    text-align: center;
    margin: 15px 0;
    background: rgb(1 66 122 / 40%);
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0px 2px 4px 0px rgb(0 0 0 / 15%);
    font-size: 18px;
    color: #002b50;
}
.input-note{
    font-size: 12px;
    font-family: Roboto-Light;
    margin-top: -10px;
    color: #979797;
}

a {
	font-family: Roboto-Medium;
	font-size: 14px;
	line-height: 1.7;
	color: #666;
	margin: 0;
	transition: all .4s;
	-webkit-transition: all .4s;
	-o-transition: all .4s;
	-moz-transition: all .4s
}

a:focus {
	outline: none!important
}

a:hover {
	text-decoration: none;
	color: #01427a
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0
}

p {
	font-family: Poppins-Regular;
	font-size: 14px;
	line-height: 1.7;
	color: #666;
	margin: 0
}

ul,
li {
	margin: 0;
	list-style-type: none
}

input {
	outline: none;
	border: none
}

textarea {
	outline: none;
	border: none
}

textarea:focus,
input:focus {
	border-color: transparent!important
}

input:focus::-webkit-input-placeholder {
	color: transparent
}

input:focus:-moz-placeholder {
	color: transparent
}

input:focus::-moz-placeholder {
	color: transparent
}

input:focus:-ms-input-placeholder {
	color: transparent
}

textarea:focus::-webkit-input-placeholder {
	color: transparent
}

textarea:focus:-moz-placeholder {
	color: transparent
}

textarea:focus::-moz-placeholder {
	color: transparent
}

textarea:focus:-ms-input-placeholder {
	color: transparent
}

input::-webkit-input-placeholder {
	color: #c1c1c1
}

input:-moz-placeholder {
	color: #c1c1c1
}

input::-moz-placeholder {
	color: #c1c1c1
}

input:-ms-input-placeholder {
	color: #c1c1c1
}

textarea::-webkit-input-placeholder {
	color: #c1c1c1
}

textarea:-moz-placeholder {
	color: #c1c1c1
}

textarea::-moz-placeholder {
	color: #c1c1c1
}

textarea:-ms-input-placeholder {
	color: #c1c1c1
}

button {
	outline: none!important;
	border: none;
	background: 0 0
}

button:hover {
	cursor: pointer
}

iframe {
	border: none!important
}



.limiter {
	width: 100%;
	margin: 0 auto
}

.container-login100 {
	width: 100%;
	min-height: 100vh;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	padding: 15px;
	background: #9053c7;
	background: -webkit-linear-gradient(-135deg, #c850c0, #4158d0);
	background: -o-linear-gradient(-135deg, #c850c0, #4158d0);
	background: -moz-linear-gradient(-135deg, #c850c0, #4158d0);
	background: linear-gradient(-135deg, #c850c0, #4158d0)
}

.wrap-login100 {
	width: 960px;
	background: #fff;
	border-radius: 10px;
	overflow: hidden;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding: 177px 130px 33px 95px
}

.login100-pic {
	width: 316px
}

.login100-pic img {
	max-width: 100%
}

.login100-form {
	width: 290px
}

.login100-form-title {
	font-family: Roboto-Black;
	font-size: 24px;
	color: #01436e;
	line-height: 1.2;
	text-align: center;
	width: 100%;
	display: block;
	padding-top: 20px;
	
}

.radio-title {
    font-family: Roboto-Medium;
    font-size: 16px;
    margin-bottom: 10px;
    display: block;
    color: #898989;
}

.wrap-input100 {
	position: relative;
	width: 100%;
	z-index: 1;
	margin-bottom: 40px;
   
}
.wrap-input100 label {
	font-family: Roboto-Medium;
	font-size: 16px;
	margin-bottom: 10px;
	display: block;
	color: #898989;
}
.radio-wraper {
	display: inline-block;
    width: auto;
    margin-right: 20px;
}
.wrap-input100 input[type="radio"] {
    display: none;
}

.radio-label{
    font-size: 14px;
    cursor: pointer;
    position: relative;
    padding-left: 30px;
}

.radio-button{
    height: 20px;
    width: 20px;
    border: 3px solid #01427a;
    border-radius: 50%;
    display: inline-block;
    position: absolute;
    left: 0;
    top: -2px;
}

.radio-button:after{
    content: "";
    display: block;
    height: 8px;
    width: 8px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background-color: #01427a;
    opacity: 0;
    -webkit-transition: opacity .2s;
    transition: opacity .2s;
}

.custom-radio:checked ~ .radio-label .radio-button:after{
    opacity: 1;
}

.input100 {
	font-family: Roboto-Regular;
	font-size: 15px;
	line-height: 1.5;
	color: #666;
	display: block;
	width: 100%;
	background: #f7f7f7;
	height: 50px;
	border-radius: 5px;
	padding: 0 30px 0 30px;
    border: transparent;
	border: 1px solid #8da7bd;
}

.focus-input100 {
	display: block;
	position: absolute;
	border-radius: 25px;
	bottom: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	box-shadow: 0 0;
	color: rgba(1, 66,122,.8);
}

.input100:focus+.focus-input100 {
	-webkit-animation: anim-shadow .5s ease-in-out forwards;
	animation: anim-shadow .5s ease-in-out forwards
}

@-webkit-keyframes anim-shadow {
	to {
		box-shadow: 0 0 70px 25px;
		opacity: 0
	}
}

@keyframes anim-shadow {
	to {
		box-shadow: 0 0 70px 25px;
		opacity: 0
	}
}

.symbol-input100 {
	font-size: 15px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	align-items: center;
	position: absolute;
	border-radius: 25px;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding-left: 35px;
	pointer-events: none;
	color: #c2c2c2;
	-webkit-transition: all .4s;
	-o-transition: all .4s;
	-moz-transition: all .4s;
	transition: all .4s
}

.input100:focus+.focus-input100+.symbol-input100 {
	color: #01427a;
	padding-left: 28px
}

.container-login100-form-btn {
	width: 100%;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	padding-top: 20px
}

.login100-form-btn {
	font-family: Roboto-Bold;
	font-size: 15px;
	line-height: 1.5;
	color: #fff;
	text-transform: uppercase;
    position: relative;
	width: 100%;
	height: 50px;
	border-radius: 25px;
	background: #01427a;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0 25px;
	-webkit-transition: all .4s;
	-o-transition: all .4s;
	-moz-transition: all .4s;
	transition: all .4s;
	width: 320px;
}



.login100-form-btn:hover{
    background: #d3c507;
    transform: translateY(-5px);
    box-shadow: 0px 10px 5px 0px rgb(0 0 0 / 20%);
}
.login100-form-btn:focus{
    background: #d3c507;
    transform: translateY(5px);
    box-shadow: 0px 5px 5px 0px rgb(0 0 0 / 20%);
}



.login100-form-btn:hover:after{
    transform: scaleX(1.6) scaleY(1.8);
    opacity: 0;
}

.form-header {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-top: 15px;
    margin-bottom: 15px;
}


.contact-link a {
    padding: 10px 15px;
    background: #0b4d78;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    margin-left: 20px;
    position: relative;
    display: inline-block;
    margin-top: 15px;
    box-shadow: 0px 2px 4px 0px rgb(0 0 0 / 15%);
}

.contact-link a:hover {
    background: #d3c507;
}
.contact-link a:after {
    content: "";
    display: inline-block;
    height: 100%;
    width: 100%;
    border-radius: 5px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    -webkit-transition: all .4s;
    transition: all .4s;
    background: #d3c507;
}


.contact-link a:hover:after{
    transform: scaleX(1.2) scaleY(1.4);
    opacity: 0;
}


.container {
    max-width: 1920px;
    margin: 0 auto;
    width: 100%;
    padding-left:15px;
    padding-right: 15px;
}

.row{
    margin-left: -15px;
    margin-right: -15px;
    display: flex;
    flex-direction: column;
}
.col-12,.col-6 {
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;

}

.align-center {
    justify-content: center;
}

.form-card {
    padding: 30px;
    border-radius: 5px;
    margin-bottom: 50px;
    box-shadow: 0px 0 6px 3px rgb(0 0 0 / 20%);
	margin-top: 30px;
}

@media(min-width:767px) {
    .form-header {
        justify-content: space-between;
        flex-direction: row;
    }
    .row{
        flex-direction: row;
    }
    .col-6 {
        width: 50%;
    }
	.login100-form-btn {
		width: 450px;
	}
}