body {
	display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100vw;
    height: 100vh;
    margin: 0;
	font-family: 'Poppins', sans-serif;
}
.login-area {
	display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
	background-image: url('../../../images/bg-min.jpg');
	background-size: cover;
	background-position: top center;
}
.login-area.webp {
	background-image: url('../../../images/bg-min.webp');
}
.login-background {
    width: 30rem;
    height: 20rem;
	position: relative;
}
.login-background .shape {
    height: 200px;
    width: 200px;
    position: absolute;
    border-radius: 50%;
}
.shape.first {
    background: #ec008c;
	background: -webkit-linear-gradient(145deg, #fc6767, #ec008c);
	background: linear-gradient(145deg, #fc6767, #ec008c);
    left: -80px;
    top: -80px;
}
.shape.second {
	background: #A770EF;
    background: -webkit-linear-gradient(145deg, #FDB99B, #CF8BF3, #A770EF);
    background: linear-gradient(145deg, #FDB99B, #CF8BF3, #A770EF);
	right: -5rem;
    bottom: -7rem;
}
.login-wrapper {
	display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 25rem;
	height: 20rem;
    background-color: rgba(255,255,255,0.75);
    border-radius: 1rem;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.1);
    box-shadow: 0 0 40px rgba(175,175,175,0.21);
    padding: 2rem;
}
.login-wrapper .login-header {
	display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-bottom: 2rem;
}
.login-wrapper .login-header h1 {
	font-size: 1.75rem;
	line-height: 1;
    font-weight: 500;
    background: -webkit-linear-gradient(#642b73, #c6426e 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
	margin: 0 0 0.5rem;
}
.login-wrapper .login-header .subheader {
	font-size: .85rem;
    text-transform: uppercase;
    letter-spacing: .005rem;
    color: #323232;
}
.login-wrapper .login-header .error {
	background: #ff4444;
    padding: 0.25rem 1rem;
    border-radius: 0.5rem;
    color: #fff;
    margin: 0.5rem 0;
    font-size: .75rem;
    text-transform: uppercase;
}
.login-wrapper .login-form {
	display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-bottom: 2rem;
}
.login-wrapper .login-form .input-area {
	display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
	position: relative;
    margin-bottom: 1rem;
}
.login-wrapper .login-form .input-area input {
	display: flex;
    height: 3rem;
    width: 100%;
	text-align: center;
    background: rgba(255,255,255,0.25);
    border-radius: 0.5rem;
    border: 1px solid #bdbdbd;
    padding: 0 0.5rem;
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: .15rem;
    color: #323232;
	outline: none;
	transition: background .3s ease-out;
	will-change: background
}
.login-wrapper .login-form .input-area input::placeholder{
    color: #bdbdbd;
}
.login-wrapper .login-form .input-area input:hover {
    background: rgba(255,255,255,0.35);
}
.login-wrapper .login-form .input-area input:active,
.login-wrapper .login-form .input-area input:focus {
    background: rgba(255,255,255,0.75);
}
.login-wrapper .login-form .buttons-area {
	display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.login-wrapper .login-form .buttons-area .btn-enter {
	background: #ec008c;
    color: #fff;
    border: 0;
    padding: 1rem 3rem;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 0.5rem;
    cursor: pointer;
	outline: none;
	transition: background .3s ease-out;
	will-change: background
}
.login-wrapper .login-form .buttons-area .btn-enter:hover,
.login-wrapper .login-form .buttons-area .btn-enter:active {
	background: #d81b60
}
.login-wrapper .footer-area {
	display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.login-wrapper .footer-area .copyright {
	font-size: .75rem;
    font-weight: 400;
    color: #757575;
    letter-spacing: .005rem;
}

@media (max-width: 767px) {
	.login-area {
		background-image: url('../../../images/bg-mobile.jpg');
	}
	.login-area.webp {
		background-image: url('../../../images/bg-mobile.webp');
	}
	.login-background {
		width: 90%;
	}
	.login-background .shape {
		height: 7.5rem;
		width: 7.5rem;
	}
	.login-background .first {
		left: -3rem;
		top: -3rem;
	}
	.login-background .second {
		right: 2rem;
		bottom: -5rem;
	}
	.login-wrapper {
		width: 80%;
		height: 17rem;
	}
	.login-wrapper .login-header h1 {
		font-size: 1.25rem;
		text-align: center;
	}
	.login-wrapper .login-header .subheader {
		font-size: .75rem;
		text-align: center;
	}
}