/* Styles for the wp-login.php form */
/* Some functionality (for employers) added when accessing it through /panel-login */
@font-face {
	font-family: 'Axiforma';
	src: url('../fonts/Axiforma-Regular.woff') format('woff');
	font-weight: 400;
	font-style: normal;
}

* {
	font-family: 'Axiforma', sans-serif;
}

.login {
	display: flex;
	flex-direction: column;
	justify-content: space-evenly;
	align-items: center;
	background-image: url('../images/login-bg.svg');
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: center top;
}

.login #login {
	max-width: 500px;
	width: 100%;
	padding: 0;
	margin: 0;
}

.login #login h1 a {
	width: 162px;
	height: 37px;
	margin-bottom: 10%;
	background-image: url('../images/logo.png');
	background-size: contain;
	background-repeat: no-repeat;
}

.login #login .employer-login-welcome {
	width: 100%;
	font-size: 30px;
	text-align: center;
	color: #4f4f4f;
	font-weight: 400;
	margin-bottom: 10%;
}

.login #login #loginform {
	border: none;
	background-color: var(--color-white);
	border-radius: 10px;
	padding: 65px;
}

.login #login #loginform label {
	display: none;
}

.login #login #loginform .input {
	font-size: 16px;
	padding-left: 15px;
	border-color: #707070;
	border-width: 0.3px;
	height: 50px;
	line-height: 50px;
	border-radius: 5px;
}

.login #login #loginform .wp-hide-pw {
	height: 50px;
	color: var(--color-primary);
}

.login #login #loginform .input::placeholder {
	font-size: 16px;
	color: #d5d5d5;
	line-height: 45px;
	height: 100%;
}

.login #login #loginform .lost-password-link {
	margin-top: -10px;
	text-align: right;
}

.login #login #loginform .lost-password-link a {
	font-size: 12px;
	color: var(--color-primary);
	text-decoration: none;
}

.login #login #loginform .forgetmenot {
	display: none;
}

.login #login #loginform .submit {
	display: block;
	margin-top: 25px;
	width: 100%;
}

.login #login #loginform .submit #wp-submit {
	width: 100%;
	font-size: 18px;
	padding: 3px 0;
	font-weight: bold;
}

.login #nav,
.login #backtoblog {
	display: none;
}

.login .devbg-employer-login-footer {
	display: flex;
	flex-direction: column;
	align-items: center;
	max-width: 370px;
	width: 100%;
	/*margin: -70px auto 60px;*/
	/*padding: 0 65px 50px;*/
	border-radius: 0 0 10px 10px;
	background-color: var(--color-white);
}

.login .devbg-employer-login-footer .register-button {
	width: 100%;
	font-size: 18px;
	text-align: center;
	color: var(--color-primary);
	border: 1px solid var(--color-primary);
	padding: 5px 0;
	background-color: var(--color-white);
	font-weight: bold;
	margin-top: 15px;
}

.login .privacy-policy-page-link {
	display: none;
}

.wp-core-ui .button-primary, .wp-core-ui .button-primary:hover {
	background: #304ffe;
	border-color: #304ffe;
}

.input:focus {
	border-color: #304ffe;
	box-shadow: 0 0 0 1px #304ffe;
}