:root {
	--increment: 6;
	--ha: calc(var(--hc) - var(--increment) * 2);
	--hb: calc(var(--hc) - var(--increment));
	--hd: calc(var(--hc) + var(--increment));
	--he: calc(var(--hc) + var(--increment) * 2);
    --font-family-primary: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	font-family: var(--font-family-primary), sans-serif;
}

body {
	background: linear-gradient(90deg, oklch(0.49 0.13 var(--hd)), oklch(0.55 0.06 var(--hb)));
}

.container {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 100vh;
}

.screen {
	background: linear-gradient(90deg, oklch(0.52 0.12 var(--hc)), oklch(0.63 0.08 var(--hb)));
	position: relative;
	height: 600px;
	width: 360px;
	box-shadow: 0 0 24px oklch(0.58 0.07 var(--hc));
}

.screen__content {
	z-index: 1;
	position: relative;
	height: 100%;
	text-align: center;
}

.screen__content img.logo {
	width: 100px;
	opacity: 0.75;
	filter: hue-rotate(-35deg);
}

.screen__background {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 0;
	clip-path: inset(0 0 0 0);
}

.screen__background__shape {
	transform: rotate(45deg);
	position: absolute;
}

.screen__background__shape1 {
	height: 520px;
	width: 520px;
	background: #FFF;
	top: -50px;
	right: 120px;
	border-radius: 0 72px 0 0;
}

.screen__background__shape2 {
	height: 220px;
	width: 220px;
	background: oklch(0.55 0.09 var(--hc));
	top: -172px;
	right: 0;
	border-radius: 32px;
}

.screen__background__shape3 {
	height: 540px;
	width: 190px;
	background: linear-gradient(270deg, oklch(0.51 0.12 var(--hc)), oklch(0.52 0.07 var(--hb)));
	top: -24px;
	right: 0;
	border-radius: 32px;
}

.screen__background__shape4 {
	height: 400px;
	width: 200px;
	background: oklch(0.65 0.06 var(--ha));
	top: 420px;
	right: 50px;
	border-radius: 60px;
}

.login {
	width: 320px;
	padding: 156px 30px 30px 30px;
}

.login__field {
	padding: 15px 0;
	position: relative;
}

.login__input {
	border: none;
	text-align: center;
	border-bottom: 2px solid hsl(var(--ha) 3% 82%);
	background: none;
	padding: 10px 24px 10px 10px;
	font-weight: 700;
	width: 75%;
	transition: .2s;
}

.login__input:active,
.login__input:focus,
.login__input:hover {
	outline: none;
	border-bottom-color: oklch(0.86 0.003 var(--ha));
}

.login__submit {
	background: white;
	font-size: 16px;
	margin-top: 30px;
	padding: 16px 20px;
	border-radius: 26px;
	border: 1px solid oklch(0.87 0.024 var(--hb));
	text-transform: uppercase;
	font-weight: 700;
	width: 100%;
	color: oklch(0.46 0.12 var(--hc));
	box-shadow: 0 2px 2px oklch(0.50 0.09 var(--hc));
	cursor: pointer;
	transition: .2s;
}

.login__submit:active,
.login__submit:focus,
.login__submit:hover {
	border-color: oklch(0.55 0.07 var(--hb));
	outline: none;
}

/*******************************************************************************/

.pwd_link {
	font-size: 70%;
	text-align: right;
	margin-right: 80px;
}

.pwd_link a {
	color: white;
	text-decoration: none;
}

.pwd_link a:hover {
	text-decoration: underline;
}