@charset "utf-8";

html, body {
	min-height: 100%;
}

html, body, div, span, object, h1, h2, h3, h4, h5, h6, a, em, ins, small, strong, b, ul, i, dl, dt, dd, form, label, table, tbody, tfoot, thead, tr, th, td, p {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	background: transparent;
	vertical-align: baseline;
}

input, select, button {
    vertical-align: middle;
}

body{
    background-image: url("/login/images/login-background.svg");
    background-size: cover;
    background-repeat: no-repeat;
    font-family: 'Nunito Sans', sans-serif;
    margin: 0;
    padding: 0;
}

.Overlay {
    height: 100vh;
    overflow: auto;
    background: rgba(97,189,246,.85);
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
    -ms-flex-align: center;
    -webkit-box-align: center;
            align-items: center;
    -ms-flex-pack: center;
    -webkit-box-pack: center;
            justify-content: center;
}

.Wrapper {    
    width: 420px;
    background: #fff;
    border-radius: 20px;
    padding: 25px;
    position: relative;
    box-sizing: border-box;
}
.Box_Header{
    font-size: 21px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 20px;
    color: #073b77;
}

.Login_Form {
    display: block;
    background: #fff;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
}

.InputLabel {
    font-size: 17px;
    line-height: 30px;
    color: #1d293b;
    display: block;
}

.InputLabel:not(:first-child) {
    margin-top: 20px;
}

.Input {position: relative;}

.Input>input[type=password], .Input>input[type=text] {
    border: 1px solid #CCC;
    border-radius: 10px;
    padding: 8px 15px;
    font-size: 16px;
    line-height: 24px;
    color: #333;
    width: 100%;
    box-sizing: border-box;
}

.password-control {
    width: 20px;
    height: 16px;
    position: absolute;
    top: 14px;
    right: 14px;
    background: url("/login/images/pass-seen.svg") 0 0 no-repeat;
    cursor: pointer;
}
.password-control.view {
    background: url("/login/images/pass-lock.svg") 0 0 no-repeat;
}

.Input>input[type=password]:focus,.Input>input[type=text]:focus{outline:none}

.required-message{
    display: none;
    margin-top: 10px;
    font-size: 14px;
    color:#F00;
}
.loginlimit{
    text-align: center;
    font-size: 15px;
    color:#F00;
}
.Button {
    width: 100%;
    margin-top: 30px;
    background-color: #61bdf6;
    -webkit-user-select: none;
    -ms-user-select: none;
    -moz-user-select: none;
         user-select: none;
    display: block;
    vertical-align: top;
    border: none;
    -webkit-font-smoothing: antialiased;
    cursor: pointer;
    white-space: nowrap;
    text-decoration: none;
    border-radius: 10px;
    color: #fff;
    font-size: 18px;
    line-height: 26px;
    padding: 10px 15px;
    text-align: center;
}

.Button:hover{
    background-color: #073b77;
}

.Button:focus{outline:none}

@media only screen
and (max-width : 380px) {
    
    .Wrapper{width: 320px; padding:20px;}
    
    .Box_Header{font-size:20px;}
	
    .InputLabel {font-size: 17px;}
    
    .Input>input[type=password], .Input>input[type=text] {
        font-size: 15px;
        line-height: 22px;
    }
    
    .Button {
        margin-top: 20px;
        font-size: 17px;
        line-height: 24px;
    }

}