* {
	box-sizing: border-box;
}

div.centered {
	position: fixed;
	/* or absolute */
	top: 50%;
	left: 50%;
	/* bring your own prefixes */
	transform: translate(-50%, -50%);
}

.screen {
	background: linear-gradient(90deg, #6613a4, #794094);
	position: relative;
	height: auto;
	width: 360px;
	box-shadow: 0px 0px 24px #5C5696;
}

.screen-content {
	z-index: 1;
	position: relative;
}

.screen-background {
	position: absolute;
	width: 35%;
	height: 201px;
	top: 540px;
	right: 0;
	bottom: 0;
	z-index: 0;
	-webkit-clip-path: inset(0 0 0 0);
	clip-path: inset(0 0 0 0);
}

.screen-background-shape {
	position: absolute;
	width: 400px;
	height: 260px;
	border-radius: 2rem;
	-moz-border-radius: 2rem;
	-webkit-border-radius: 2rem;
	top: 70px;
	background: linear-gradient(0deg, #E2E5FF, #E2E5FF), linear-gradient(0deg, #E2E5FF, #E2E5FF), #E2E5FF;
	transform: rotate(-120deg);
}

.screen-background-shape1 {
	position: absolute;
	width: 400px;
	height: 260px;
	border-radius: 2rem;
	-moz-border-radius: 2rem;
	-webkit-border-radius: 2rem;
	left: 15px;
	top: 75px;
	background: #D9DCFF;
	transform: rotate(-120deg);
}

.login {
	padding: 45px;
	padding-bottom: 6rem;
	background-color: #FFFF;
	margin-top: 1.5rem;
	border-top-right-radius: 2rem;
	border-top-left-radius: 2rem;
}

.login-field {
	padding: 15px 0px;
	position: relative;
}

.login-header {
	color: #F2F2F2;
	font-size: 25px;
	font-weight: 600;
	display: flex;
	padding-top: 2rem;
	padding-left: 25px;
	padding-right: 10px;
}

.login-logo {
	width: 50%;
}

.login-icon {
	position: absolute;
	top: 2px;
	right: 10px;
	color: #6613a4;
	cursor: pointer;
}

.login-input {
	border: 1px solid #e4d0d0;
	border-radius: 0.5rem;
	-moz-border-radius: 0.5rem;
	-webkit-border-radius: 0.5rem;
	background: #FCFCFC;
	color: #6613a4;
	padding: 10px 35px 10px 15px;
	width: 100%;
	transition: .2s;
	font-size: 80%;
}

.login-input:active,
.login-input:focus,
.login-input:hover {
	border-bottom: 0.1em solid #6613a4;
}

.login-submit {
	font-size: 20px;
	font-weight: 700;
	padding: 10px 20px;
	border-radius: 0.5rem;
	-moz-border-radius: 0.5rem;
	-webkit-border-radius: 0.5rem;
	align-items: center;
	text-align: center;
	width: 100%;
	background-color: #6613a4;
	color: #F2F2F2;
	box-shadow: 0px 2px 2px #5954bb;
	cursor: pointer;
	transition: .2s;
}

.login-submit:active,
.login-submit:focus,
.login-submit:hover {
	background-color: #F2F2F2;
	color: #6613a4;
	border-bottom: 0.1em solid #6613a4;
}

/* Website style */
#signup-screen {
	top: 54%;
}

.forgot-pass {
	padding-bottom: 22px;
	color: #9E9E9E;
	font-size: 14px;
	cursor: pointer;
}

.forgot-pass a:hover {
	text-decoration: underline;
	font-size: 15px;
}

.btw-text-box {
	text-align: center;
	padding: 15px;
	padding-top: 25px;
	padding-bottom: 30px;
}

.account-text {
	color: #9E9E9E;
	font-size: 14px;
}

.error-response-message {
	font-size: 16px;
	text-align: center;
	padding-top: 15px;
	color: #DC143C;
}

.social-login {
	position: relative;
	width: 65%;
	display: block;
	text-align: center;
	color: #6613a4;
	font-weight: 700;
}

.social-icons {
	display: flex;
	align-items: center;
	justify-content: center;
}

.social-login-icon {
	width: 50px;
	padding: 10px 10px;
	text-decoration: none;
	text-shadow: 0px 0px 8px #6613a4;
	cursor: pointer;
}

.social-login-icon:hover {
	transform: scale(1.2);
}