@font-face {
	font-family: InterVariable;
	font-style: normal;
	font-weight: 100 900;
	font-display: swap;
	src: url('../fonts/InterVariable.woff2') format('woff2');
}

*,
::before,
::after {
	box-sizing: border-box;
}

body {

}

body {
	font-family: "InterVariable", sans-serif;
	font-size: 16px;
	font-weight: 250;
	color: #363636;
	background-color: #fff;
}

label {
	cursor: pointer;
}

h1,
h2,
h3,
h4 {
	margin: 0;
	font-family: "InterVariable", sans-serif;
	font-weight: 700;
}

a {
	text-decoration: none;
}

a:hover {
	color: #000;
}

h1, h2, h3, h4, a, input, label, button {
	color: inherit;
}

.toggle-check {
	display: flex;
	align-items: center;
	margin-right: 5px;
}

.toggle-check input[type="checkbox"] {
	margin: 0;
	padding: 0;
	width: 0;
	opacity: 0;
	position: absolute;
}

.toggle-check .toggle {
	height: 25px;
	width: 40px;
	background-color: #efefef;
	border: 1px solid #999;
	border-radius: 50px;
	position: relative;
	transition: all 0.3s ease-in-out;
	cursor: pointer;
}

.toggle-check .toggle .slider {
	height: 19px;
	width: 19px;
	background-color: #999;
	border-radius: 50%;
	position: absolute;
	top: 2px;
	left: 2px;
	transition: all 0.3s ease-in-out;
}

.toggle-check input[type="checkbox"]:checked+.toggle {
	border-color: #000;
	background-color: #fff;
}

.toggle-check input[type="checkbox"]:checked+.toggle .slider {
	background-color: #000;
	left: 17px;
}

button {
	transition: all 0.3s ease-in-out;
}

input {
	border: 1px solid #999;
	border-radius: 10px;
	width: 100%;
	display: inline-block;
	padding: 10px;
	font-family: inherit;
	font-size: 18px;
	outline: 0;
	transition: all 0.3s ease-in-out;
	font-weight: 250;
}

input[type="checkbox"] {
	width: auto;
	accent-color: currentColor;
}

input:focus {
	border-color: #000;
}

main {
	display: flex;
	min-height: 100vh;
}

#login {
	margin: 0 auto;
	display: flex;
	justify-content: center;
	flex-direction: column;
	max-width: 450px;
	width: 100%;
	padding: 50px;
}

#login header.main {
	margin-bottom: 10px;
}

#login header.main .logo {
	background: #fff;
	padding: 10px 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

#login header.main .logo .logo-image.with-text {
	height: 35px;
}

#login header.main .logo .logo-image.without-text {
	height: 48px;
}

#login .secondary-logo {
	width: 100%;
	display: flex;
	align-items: flex-start;
	margin-top: 10px;
}

#login .secondary-logo .logo-image {
	height: 48px;
}

#login header.main .choose-locale {
	font-size: 16px;
	position: relative;
	width: 90px;
}

#login header.main .choose-locale span {
	display: flex;
	align-items: center;
	gap: 5px;
	padding: 0 5px;
	border-radius: 5px;
}

#login header.main .choose-locale span:hover+ul,
#login header.main .choose-locale ul:hover {
	max-height: 200px;
	opacity: 1;
}

#login header.main .choose-locale ul {
	display: flex;
	width: 100%;
	position: absolute;
	list-style: none;
	flex-direction: column;
	gap: 5px;
	padding: 0;
	box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
	border-radius: 5px;
	z-index: 5;
	top: -3px;
	max-height: 0;
	transition: all 0.3s ease-in-out;
	overflow: hidden;
	opacity: 0;
}

#login header.main .choose-locale ul li a {
	display: block;
	padding: 5px;
}

#login header.main .choose-locale ul li{
	background-color: #fff;
}

#login header.main .choose-locale ul li:first-child{
	background: none;
}

#login header.main .logo a.cloud {
	font-family: "InterVariable", sans-serif;
	color: #3f3f3f;
	font-size: 24px;
	font-weight: 700;
	display: flex;
	align-items: center;
	gap: 5px;
	text-decoration: none;
}

#login header.main nav {
	margin-top: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
}

#login header.main nav a {
	width: 100%;
	text-align: center;
	font-size: 18px;
	font-family: "InterVariable", sans-serif;
	color: #808080;
	padding-bottom: 10px;
	border-bottom: 2px solid #808080;
	text-decoration: none;
}

#login header.main nav a.active {
	color: #000;
	border-bottom: 2px solid #000;
	font-family: "InterVariable", sans-serif;
	font-weight: 700;
}

.note{
	font-size: 16px;
	border: 1px solid #999;
	border-left: 5px solid #000;
	color: #000;
	border-radius: 7px;
	padding: 10px;
	display: flex;
	margin-bottom: 20px;
}

.note svg{
	
	width: 40px;
	height: 40px;
	margin-right: 10px;
}

.helper-text {
	margin-top: 0;
}

.form-group {
	position: relative;
	margin-bottom: 15px;
}

.form-group+.form-group {
	margin-top: 35px;
}

.form-group+button.cta, .form-group+input.cta {
	margin-top: 25px;
}

.form-group input {
	position: relative;
}

.form-group label.top-label{
	transition: all 0.1s;
	left: 11px;
	top: 11px;
	font-size: 18px;
	position: absolute;
	font-weight: 250;
	cursor: text;
	z-index: 1;
}

.form-group input::placeholder{
	color: #fff;
}

.form-group label {
	pointer-events: none;
}

.form-group:has(input:focus) label.top-label, .form-group:has(input:is(:-webkit-autofill, :autofill)) label.top-label, .form-group:not(:has(input:placeholder-shown)) label.top-label {
	top: -12px;
	left: 20px;
	font-size: 14px;
	background: #fff;
	color: #666;
	padding: 0 3px;
	z-index: 5;
	transition: all 0.1s ease-in-out;
	border-radius: 5px;
}

.form-group input:focus+label.top-label {
	color: #000;
}

.form-group .inline-btn {
	display: flex;
	position: relative;
	flex: 1 1 auto;
}

.form-group .inline-btn button {
	position: absolute;
	top: 10px;
	right: 8px;
	border: 0;
	background-color: #fff;
	font-size: 18px;
}

.form-group .error-input {
	background: #ffd7d7;
	padding: 10px 10px 4px;
	width: 100%;
	display: inline-block;
	border-radius: 0 0 10px 10px;
	font-weight: bold;
}

.password-visibility {
	position: absolute;
	padding: 6px;
 	top: 6px;
 	right: 6px;
}

.login-settings {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 0 0 15px;
}

/* Checkbox for remember me: */
.remember-me {
	display: flex;
	align-items: center;
	gap: 5px;
}

.remember-me input {
	margin: 0;
}

.remember-me label span,
.pw-forgot a {
	font-size: 16px;
	margin: 0;
	user-select: none;
}

/* Forgot password link: */
.pw-forgot a {
	text-decoration: underline;
	color: #000;
}

.pw-forgot a:hover {
	color: #85788b;
}

.helper-text-item {
	justify-content: flex-end;
}

.form-wrapper {
	width: 100%;
	padding: 20px 0;
}

button.cta, input.cta {
	border-radius: 50px;
	padding: 10px;
	color: #fff;
	background-color: #000;
	border: 2px solid #000;
	font-family: "InterVariable", sans-serif;
	font-weight: 700;
	font-size: 18px;
	width: 100%;
	display: block;
}

button.cta:hover, input.cta:hover {
	background-color: #fff;
	color: #000;
}

button.cta-inverted, input.cta-inverted {
	border-radius: 50px;
	padding: 8px;
	background-color: #999;
	color: #fff;
	border: 0;
	font-family: "InterVariable", sans-serif;
	font-weight: 700;
	font-size: 16px;
	width: 100%;
	display: block;
}

button.cta-inverted:hover, input.cta-inverted:hover {
	background-color: #666;
}

#social-providers {
	margin-top: 10px;
}

#social-providers .intro {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 20px 0;
}

#social-providers .intro .line {
	background: #3f3f3f;
	flex: 1;
	max-width: 100px;
	height: 1px;
}

#social-providers .intro h4 {
	padding: 0 10px;
	text-transform: uppercase;
}

#social-providers ul.social-provider-list {
	display: flex;
	justify-content: center;
	align-items: center;
	list-style: none;
	gap: 16px;
	flex-wrap: wrap;
}

#social-providers ul.social-provider-list li a {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 5px 20px;

	font-size: 18px;
	font-family: "InterVariable", sans-serif;
	font-weight: 700;

	text-decoration: none;
	color: #333;
	background: #fafafa;
	border: 1px solid #999;
	border-radius: 50px;

	transition: all 0.3s ease-in-out;
}

#social-providers ul.social-provider-list li a svg {
	width: 20px;
}

#social-providers ul.social-provider-list li a:hover {
	color: #000;
	background-color: #fff;
	border: 1px solid #3f3f3f;
}

p.terms,
.terms-big {
	margin-top: 20px;
	font-size: 14px;
}

p.terms a,
.terms-big a {
	color: #3f3f3f;
	text-decoration: underline;
}

p.terms a:hover,
.terms-big a:hover {
	color: #000;
}

.terms-big {
	font-size: 16px;
	margin-bottom: 20px;
}

.notification-box {
	border-width: 2px;
	border-radius: 10px;
	margin-bottom: 40px;
	box-shadow: 0 0 10px 0 rgba(86.7, 86.7, 86.7, 0.5);
}





#info {
	background-color: #f8f8f8;
	background-image: url(../img/bg.webp);

	background-position: center;
	background-size: cover;

	display: flex;
	justify-content: center;
	align-items: center;

	min-width: 60%;
}

#info .card {
	background-color: #fff;
	border-radius: 20px;
	padding: 50px 70px;
	text-align: center;
	max-width: 670px;
	box-shadow: 0 0 15px 5px rgba(86.7, 86.7, 86.7, 0.5);
	margin: 50px;
}

#info .card h2 {
	font-size: 36px;
	margin: 0 0 10px;
}

#info .card h3 {
	font-size: 24px;
}

#info .card .img {
	margin: 20px auto 0;
}

#info .card .img img {
	border-radius: 20px;
	width: 100%;
	height: auto;
	border: 2px solid #333;
}

#info .card ul {
	margin-top: 20px;
	margin-bottom: 10px;
	column-count: 2;
	text-align: left;
	font-size: 24px;
}

#info .card ul li {
	display: flex;
	align-items: center;
	gap: 5px;
}

#info .card ul li img {
	width: 20px;
}

#info .card .cta label {
	font-family: "InterVariable", sans-serif;
	font-weight: 700;
	font-size: 18px;
	cursor: pointer;
}

#info .card .cta label:hover {
	color: #000;
}


footer {
	margin-top: 0;
	background: #000;
	padding: 20px;
	color: #fff;
}

footer .max-width {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

@media screen and (max-width: 500px) {
	footer .max-width {
		flex-direction: column;
		gap: 50px;
	}
}

footer .legal {
	display: flex;
	gap: 20px;
}

footer ul.socials {
	display: flex;
	align-items: center;
	justify-content: space-between;
	list-style: none;
	padding: 0;
	margin: 0;
	gap: 20px;
	line-height: 0;
}

footer a {
	color: #fff;
	text-decoration: none;
	transition: all 0.3s ease-in-out;
}

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

footer ul.socials svg {
	width: auto;
	height: 30px;
}

@media screen and (max-width: 1200px) {
	#info .card {
		padding: 50px 30px;
	}

	#info .card ul {
		font-size: 18px;
	}

	#info .card h2 {
		font-size: 30px;
	}

	#info .card h3 {
		font-size: 20px;
	}
}

@media screen and (max-width: 950px) {
	#info {
		display: none;
	}

	#login {
		background-image: url(../img/bg.webp);
		background-position: center;
		background-size: cover;

		display: flex;
		justify-content: center;
		align-items: center;

		width: 100%;
		max-width: 100%;
	}

	#login .login-container {
		width: 90%;
		background-color: #fff;
		border-radius: 20px;
		padding: 50px 70px;
		text-align: center;
		max-width: 670px;
		box-shadow: 0 0 15px 5px rgba(86.7, 86.7, 86.7, 0.5);
		margin: 50px;
	}

	#social-providers ul.social-provider-list li {
		width: 160px;
	}
}

@media screen and (max-width: 620px) {
	#login {
		background-image: none;
		background-color: #fff;
		padding: 10px;
	}

	#login .login-container {
		border-radius: 0;
		padding: 0;
		text-align: center;
		max-width: 100%;
		width: 100%;
		box-shadow: none;
		margin: 0;
	}

	#social-providers ul.social-provider-list {
		gap: 5px;
	}

	#social-providers ul.social-provider-list li {
		width: 100%;
	}
}

body.minimal-login {
	#info {
 		display: none;
	}


	#login {
		background-image: none;
		background-color: #fff;
		padding: 10px;
	}

	#login .login-container {
		border-radius: 0;
		padding: 0;
		text-align: center;
		width: 100%;
		box-shadow: none;
		margin: 0;
	}

	#social-providers ul.social-provider-list {
		gap: 5px;
	}

	#social-providers ul.social-provider-list li {
		width: 100%;
	}
}