@font-face {
	font-family: "Norse";
	src: url(./assets/Norse-Bold.otf);
}

@font-face {
	font-family: "CoolFont1";
	src: url(./assets/WDXL_Lubrifont_TC/WDXLLubrifontTC-Regular.ttf)
		format(truetype);
}

@font-face {
	font-family: "CoolFontMain";
	src: url(./assets/Macondo-Regular/Macondo-Regular.ttf) format(truetype);
}

@font-face {
	font-family: "CoolFontHead";
	src: url(./assets/josefinSans/JosefinSans-VariableFont_wght.ttf)
		format(truetype);
}

@font-face {
	font-family: "CoolFont2";
	src: url(./assets/WDXL_Lubrifont_JP_N/WDXLLubrifontJPN-Regular.ttf)
		format(truetype);
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	display: flex;
	background-color: #f9fafb;
}

.side-img {
	background-image: url(./assets/halie-west-unsplash.jpg);
	position: relative;
	background-size: 100vh auto;
	background-repeat: no-repeat;
	height: 100vh;
	overflow: hidden;
	flex-shrink: 0;
	width: 35%;
}

.titleBar {
	position: absolute;
	top: 30%;
	justify-content: center;
	width: 100%;
	height: 15vh;
	background-color: rgba(0, 0, 0, 0.604);
	display: flex;
	align-items: center;
}

.titleBar > * {
	color: white;
	max-height: 10vh;
	font-size: 8vh;
	font-family: "Norse";
}

.side-img .credit {
	position: absolute;
	bottom: 1%;
	left: 10%;
	color: rgb(255, 255, 255);
	text-align: center;
	align-self: center;
}

.side-img .credit a {
	color: rgb(255, 255, 255);
}

.main {
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 100%;
}

.main h3 {
	font-size: 23px;
	max-width: 80%;
	font-weight: normal;
	font-family: "CoolFont1", "CoolFont2";
}

.main p {
	font-family: "CoolFont1", "CoolFont2";
	font-size: 18px;
	padding: 0vh 5vw;
}

.main p > a {
	color: #596d48;
	text-decoration: none;
}

.newtxt {
	margin-bottom: 5%;
}

.padding {
	padding: 0vh 5vw;
}

.form {
	background-color: #fffffe;
}

fieldset {
	border: hidden;
	height: 20vh;
	padding: 2%;
	display: flex;
	flex-direction: column;
	height: fit-content;
	box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.604);
}

form fieldset legend {
	float: left;
	font-size: larger;
	font-weight: bold;
	font-family: "CoolFontHead";
	width: 100%;
}

.inps {
	display: flex;
}

.inps > * {
	display: flex;
	flex-direction: column;
	justify-content: space-evenly;
	padding: 1vh 3vw;
}

.inps > * > label {
	padding-top: 2vh;
	font-family: "CoolFontMain";
}

.inps > * > input {
	border-color: #e5e7eb;
	border-style: solid;
	outline: none;
	border-radius: 5px;
	height: 3vh;
	width: 15vw;
}

.inps > * > input:focus {
	border-color: #1100ff;
}

.inps > * > .password:invalid {
	border-color: #ff0000;
}

.submitbtn {
	height: 5vh;
	width: 10vw;
	border-radius: 10px;
	margin: 3vh 2vw;
	background-color: #596d48;
	color: white;
	font-size: larger;
	text-emphasis: bold;
	font-family: "CoolFont2";
}
