@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');


/* ------------------------------------
	Full Page
   ------------------------------------ */
html{
  font-size: 62.5%;
}

body{
	background-color: #FCFCFC;
}

#login{
	padding: 0;
	display: flex;
  	flex-direction: column;
  	min-height: 100vh;
}

.login h1{
	margin-top: 50px;
}

.login form{
	background: #FCFCFC;
	border: none;
	box-shadow: none;
	position: relative;
	z-index: 2;
	overflow: visible;
}

/* ------------------------------------
	Form Styles 
   ------------------------------------ */
.login label{
	font-family: 'Inter';
	font-style: normal;
	font-weight: 400;
	font-size: 1.8rem;
	line-height: 22px;
	color: #2D2F30;
}

.login form .input{
	background: #FCFCFC;
	border: 1px solid #949CA6;
	padding: 12px 14px;
	font-family: 'Inter';
	font-style: normal;
	font-weight: 400;
	font-size: 1.4rem;
	line-height: 22px;
	border-radius: 0;
	color: #161617;
	margin-bottom: 25px;
}

.login .button.wp-hide-pw{
	margin: 0;
	padding: 0;
	top: 5px;
}

/* ------------------------------------
	Remember Me
   ------------------------------------ */
.login form .forgetmenot{
	display: flex;
	align-items: center;
	float: none;
	margin-bottom: 25px !important;
	position: relative;
}

.login form .forgetmenot input{
	opacity: 0;
}

.login form .forgetmenot label{
	cursor: pointer;
	margin-left: 20px;
	height: 22px;
	display: inline-block;
}

.login form .forgetmenot label::before,
.login form .forgetmenot label::after{
	content: "";
	position: absolute;
	width: 22px;
	height: 22px;
	transition: 0.5s;
}

.login form .forgetmenot label::before{
	border: 2px solid #00ADEE;
	background-color: rgba(0,0,0,0);
	top: 0;
	left: 0;
}
.login form .forgetmenot label::after{
	z-index: 2;
	background-color: #EDFAFF;
	clip-path: polygon(4px 11px, 8px 15px, 19px 3px, 21px 5px, 8px 19px, 2px 13px);
	opacity: 0;
	top: 2px;
	left: 2px;
}

input[type=checkbox]:focus + label::before{
	border-color: #002B3B !important;
	border-width: 2px;
	transition: 0s;
}

input[type=checkbox]:checked + label::before{
	background-color: #00ADEE;
	border-color: #00ADEE;
}

input[type=checkbox]:checked + label::after{
	opacity: 1;
}


/* ------------------------------------
	Submit Button
   ------------------------------------ */
.login form .submit{
	float: none;
}

.login form .submit input[type=submit]{
	color: #010710;
  	font-family: 'Inter';
  	font-weight: 600;
  	font-size: 1.8rem;
  	letter-spacing: 0;
	border: none;
  	border-radius: 1000px;
  	cursor: pointer;
  	transition: 0.5s;
  	text-decoration: none;
  	position: relative;
  	overflow: clip;
  	display: inline-block;
	background-color: #00ADEE;
    padding: 5px 44px;
	width: 100%;
}

.login form .submit input[type=submit]:hover{
	background-color: #002B3B;
	color: #EDFAFF;
}

/* ------------------------------------
	Lost Password & Back to Blog
   ------------------------------------ */
.login #nav{
	margin: 0;
}

.login #backtoblog{
	margin-bottom: 70px;
}

.login #nav,
.login #backtoblog{
	text-align: center;
}

.login #nav a,
.login #backtoblog a{
	font-family: 'Inter';
	font-style: normal;
	font-weight: 400;
	font-size: 1.4rem;
	line-height: 22px;
	color: #2D2F30;
}

.login #nav a:hover,
.login #backtoblog a:hover{
	color: #00ADEE;
}


/* ------------------------------------
	Privacy Policy
   ------------------------------------ */
.login .privacy-policy-page-link{
	margin-top: auto;
	margin-bottom: 25px;
	position: relative;
	z-index: 2;
}

.login .privacy-policy-page-link a{
	font-family: 'Inter';
	font-style: normal;
	font-weight: 400;
	font-size: 1.4rem;
	line-height: 17px;
	color: #FCFCFC;
}

.login .privacy-policy-page-link a:hover{
	color: #00ADEE;
}

.login .privacy-policy-page-link::after{
	content: "";
	background-color: #2D2F30;
	position: absolute;
	z-index: -1;
	left: calc(((100vw - 320px) / 2) * -1);
    right: calc(((100vw - 320px) / 2) * -1);
    top: -25px;
    bottom: -25px;
}