@import url("https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap");

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	color: #333333;
	font-family: "Raleway", sans-serif;
}

body {
	background-color: #f2f2f2;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

input[type="number"] {
	-moz-appearance: textfield;
}

main {
	display: flex;
	/* align-items: center; */
	/* justify-content: space-around; */
	height: 100vh;
	position: relative;
}

.left {
	display: flex;
	/* align-items: center; */
	justify-content: center;
	flex-direction: column;
	background-color: #003366;
	width: 50vw;
	height: 100vh;
	padding: 60px 80px;
}

.left .icon {
	text-align: center;
	margin-bottom: 260px;
}

.left .icon h4 {
	color: #f2f2f2;
	font-size: 1.2rem;
	letter-spacing: 2px;
	word-spacing: 6px;
	margin: 20px;
}

.left .icon svg {
	stroke: #ff6600;
	width: 260px;
}

.left .bottom {
	text-align: center;
	position: absolute;
	bottom: 40px;
	display: flex;
	align-items: center;
	justify-content: space-around;
	width: 480px;
	margin: 0 auto;
	text-align: center;
}

.left .bottom p {
	color: #f2f2f2;
}

.left .bottom a {
	color: #f2f2f2 !important;
	transition: all 0.4s;
}

.left .bottom a:hover {
	color: #87ceed !important;
	text-decoration: none;
}

/* right area styling */

.right {
	display: flex;
	align-items: center;
	flex-direction: column;
	justify-content: center;
	height: 100vh;
	width: 50vw;
}

.right .heading {
	padding: 20px 40px;
	margin: 10px 20px 30px 20px;
}

.heading h1 {
	font-size: 3.6rem;
	margin-bottom: 16px;
}

.heading p {
	font-size: 1.4rem;
	text-align: center;
}

.input-box {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 36px;
	padding: 20px 40px;
	width: 560px;
}

.input-box div {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 10px;
}

.input-box div label {
	font-size: 1.2rem;
}

.input-box div input {
	width: 100%;
	padding: 16px 20px;
	font-size: 1.2rem;
	border-radius: 4px;
	border: none;
}

.input-box div input::placeholder {
	color: #003366;
	font-weight: 400;
}

.show-password {
	width: 460px;
	text-align: right;
	margin-bottom: 26px;
}

.loginBtn button,
.regisBtn button {
	width: 200px;
	font-size: 1.2rem;
	background-color: #003366;
	color: #f2f2f2;
	font-weight: 700;
	border-radius: 6px;
	border: none;
	padding: 16px 20px;
	transition: all 0.4s;
}

.loginBtn button:hover,
.regisBtn button:hover {
	background-color: #0056b3;
	cursor: pointer;
}

/* register page styling */
.register-inputs {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 20px;
	padding: 20px 40px;
	width: 640px;
}

.register-inputs div {
	display: flex;
	/* flex-direction: column; */
	align-items: center;
	justify-content: center;
	gap: 20px;
}

.input-box div label {
	font-size: 1.2rem;
}

.register-inputs div input,
.register-inputs input,
.register-inputs textarea,
.register-inputs select {
	width: 100%;
	padding: 16px 20px;
	font-size: 1rem;
	border-radius: 4px;
	border: 1px solid #333333;
}

.input-box div input::placeholder {
	color: #003366;
	font-weight: 400;
}
