﻿body {
	background-color: #6232cc;
}

.login-page {
	display: flex;
}

.login-banner {
	width: 55%;
	flex-grow: 1;
	padding: 50px;
	background-image: url(../images/SiteBuilder/dear-guest-bg.png);
	background-repeat: no-repeat;
	background-size: 100% 100%;
	display: flex;
	flex-direction: column;
}

.banner-title {
	display: flex;
	flex-direction: column;
	align-items: center;
	height: 100%;
}

.form-container {
	min-width: fit-content;
	width: 45%;
	height: 100vh;
	background-color: white;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-grow: 1;
}

.login-form {
	display: flex;
	flex-direction: column;
	width: 40%;
}

.login-title {
	text-align: center;
	font-family: var(--font-family-wb);
	font-size: 32px;
	font-weight: 700;
	color: var(--primary-wb);
	margin: 0 0 8px 0;
	text-align: center;
}

.login-subtitle {
	font-family: var(--font-family-wb);
	font-size: 15px;
	color: var(--grey);
	margin: 0 0 30px 0;
	text-align: center;
	line-height: 1.5;
}

.login-btn {
	padding: 8px 0px;
	border-radius: 15px;
}

.sign-up-link {
	color: #1b1464;
}

.signup-validation-error {
	color: #b91c1c;
	font-size: 12px;
	font-weight: 500;
	margin-top: 6px;
}

.login-error {
	color: #dc2626;
	font-size: 14px;
	text-align: center;
}