/* CSS Document */

body {
	overflow-y: hidden;
	margin: 0;
	padding: 0;
}

#login-body,
#register-body {
	background-color: #291f56;
	height: 100vh;
	
}

#login-container {
	background-color: #fcfcfc;
	position: absolute;
	display: flex;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	margin: auto;
	width: 50%;
	height: 70vh;
	border-radius: 1rem;
}

#register-container {
	background-color: #fcfcfc;
	position: absolute;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	margin: auto;
	width: 30%;
	height: 60vh;
	border-radius: 1rem;
}

#register-container h2 {
	text-align: center;
	color: #6193E0;
}

#login-left {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	height: 100%;
	width: 50%;
	border-top-left-radius: 1rem;
	border-bottom-left-radius: 1rem;
	
}

#login-logo {
	max-width: 75%;
}

#register-logos {
	widows: 100%;
	align-items: center;
	display: flex;
}

#register-logo {
	margin: auto;
	max-width: 40%;
}

#login-logo img,
#register-logo img {
    max-width: 100%;
    max-height: 100%;
}

#login-left p {
	color: #5361ab;
	margin: 0;
	padding: 1rem;
	text-align: center;
}

#login-right {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	height: 100%;
	width: 50%;
	border-top-right-radius: 1rem;
	border-bottom-right-radius: 1rem;
}

#login-right h2 {
	color: #5361ab;
}

#login-form {
	padding: 50px;
}

#login-form input[type="text"],
#login-form input[type="password"] {
    width: 100%;
    padding: 15px;
    border: 1px solid #83b1db;
    margin-bottom: 15px;
	border-radius: 0.5rem;
    box-sizing: border-box
}

#login-form input[type="submit"] {
	width: 100%;
    padding: 15px;
    background-color: #5361ab;
    border: 0;
    box-sizing: border-box;
    cursor: pointer;
    font-weight: bold;
    color: #ffffff;
}


#register-form {
	padding: 20px 50px;
}

#register-form input[type="text"],
#register-form input[type="email"],
#register-form input[type="password"] {
    width: 100%;
    padding: 15px;
    border: 1px solid #83b1db;
    margin-bottom: 15px;
	border-radius: 0.5rem;
    box-sizing: border-box
}

#register-form input[type="submit"] {
	width: 100%;
    padding: 15px;
    background-color: #5361ab;
    border: 0;
    box-sizing: border-box;
    cursor: pointer;
    font-weight: bold;
    color: #ffffff;
}

.error {
	color: red;
	font-size: 10px;
	text-align: center;
	margin-top: -10px;
}