@media(max-width:600px){
    .logged-out .login__Container > hr {
        display:none;
    }   
}

.login-form {
	width: 516px;
	max-width: 100%;
	margin: 0 auto;
	margin-top: 90px;
}
@media(max-width:600px){
    .login-form {
    	margin-top: 30px;
	    width: 100%;
    }
}

.login-form form {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: flex-end;
}
.login-form form > div {
	width: 100%;
}
.login-form p {
	font-size: 16px;
	font-weight: 400;
	width: 100%;
}
.login-form label {
	font-weight: 700;
	font-size: 18px;
	display: block;
}
.login-form input[type="text"], 
.login-form input[type="password"] {
	background: #EDF2F4;
	border: 0px;
	font-size: 18px;
	font-weight: 600;
	display: block;
	width: 100%;
	padding: 12px;
	margin-top: 5px;
}
.login-form a {
	color: #34373F;
}
.login-form .mb-3 {
	margin-bottom: 17px !important;
	margin-top: 25px !important;
	width: 100%;
}
.login-form .btn {
	font-size: 15px;
	text-transform: initial;
	border-color: #E1242A;
	border-width: 1px;
	font-weight: 400;
	background: white;
	padding: 9px 19px;
	line-height: 1;
}

@media(max-width:600px){
    .login-form .btn {
	    width: 100%;
    }
}


.form-check input {
	opacity: 0;
	position: absolute;
	top: -9000em;
	left: -9000em;
}
.form-check input ~ label {
	font-weight: 400;
	font-size: 15px;
	position: relative;
	display: inline-block;
	padding-left: 35px;
}
.form-check input ~ label::before {
	content: "";
	display: block;
	width: 20px;
	height: 20px;
	background: white;
	border: 1px solid gray;
	border-radius: 20px;
	content: "";
	display: block;
	position: absolute;
	top: -1px;
	left: 0px;
	border: 2px solid grey;
	height: 21px;
	width: 21px;
	border-radius: 30px;
}

.form-check input:checked ~ label:before,
.form-check input ~ label:hover:before {
	background: #E1242A;
	border-color:#E1242A;
}
.form-check input ~ label::after {
	content: "";
	display: block;
	height: 13px;
	width: 13px;
	position: absolute;
	top: 3px;
	left: 5px;
	display: none;
	background: url(/images/tick.png) no-repeat center center;
	z-index: 100;
}
.form-check input:checked ~ label:after {
	display:block;
}