@font-face {
	font-family: "Apercu-Pro";
	src: url("../FONTS/Apercu-Pro-Light.otf") format("opentype");
	font-weight: 300;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: "Apercu-Pro-CursiveL";
	src: url("../FONTS/Apercu-Pro-Light-Italic.otf") format("opentype");
	font-weight: 300;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: "Apercu-Pro";
	src: url("../FONTS/Apercu-Pro-Regular.otf") format("opentype");
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Apercu-Pro";
	src: url("../FONTS/Apercu-Pro-Medium.otf") format("opentype");
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Apercu-Pro";
	src: url("../FONTS/Apercu-Pro-Bold.otf") format("opentype");
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

body {
	background-color: white;
	font-family: "Apercu-Pro", sans-serif;
	font-weight: 300;
	color: #422b1c;
}
header {
	width: 100%;
	height: 8vw;
	background-color: #f4e3e8;
	border-bottom: 0.1vw solid #ef9eb6;
}
.logo {
	width: 30%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: flex-start;
}
.logo img {
	width: auto;
	height: 55%;
	margin-left: 2vw;
}
.BtnR {
	background-color: #ffc7df;
	color: #422b1c;
	border: none;
	border-radius: 0.4vw;
	padding: 0.8vw 1.5vw;
	font-size: 1.5vw;
	cursor: pointer;
	transition: background-color 0.3s;
	border-radius: 50px;
	border: none;
	margin-top: 3vw;
	position: absolute;
	right: 10%;
	width: 15%;
	text-align: center;
	text-decoration: none;
	font-family: "Apercu-Pro-CursiveL", cursive;
}
.BtnR:hover {
	background-color: #ef9eb6;
}

main {
	display: flex !important;
	min-height: 50vw;
}
.imgR {
	width: 30%;
	position: relative;
}
.imgR img {
	width: 200%;
	height: 160%;
	top: -30%;
	left: -60%;
	position: absolute;
}
.contendR {
	width: 60%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	margin-left: 5%;
}
.contendR h2 {
	font-size: 3vw;
	margin-bottom: 1vw;
	font-weight: 400;
}
.contendR p {
	font-size: 1.6vw;
	margin-bottom: 3vw;
	line-height: 1.5;
}
#PassForm {
	display: flex;
	flex-direction: column;
	width: 70%;
	margin-left: 5%;
}
#PassForm label {
	font-size: 1.45vw;
	margin-bottom: 0.5vw;
}
#PassForm input {
	padding: 0.8vw;
	font-size: 1.2vw;
	margin-bottom: 2vw;
	border: 0.1vw solid #ccc;
	border-radius: 0.4vw;
}
#PassForm button {
	padding: 0.8vw;
	font-size: 1.3vw;
	width: 50%;
	background-color: #ffc7df;
	color: #422b1c;
	border: none;
	border-radius: 0.4vw;
	cursor: pointer;
	transition: background-color 0.3s;
}
#PassForm button:hover {
	background-color: #ef9eb6;
}

footer {
	width: 100%;
	min-height: 7vw;
	display: flex;
	align-items: center;
	justify-content: space-around;
}
footer div {
	display: flex;
	flex-direction: column;
	align-items: center;
}
footer span,
footer p {
	font-size: 0.95vw;
}
footer a {
	color: #422b1c;
	text-decoration: none;
	font-size: 0.9vw;
}

@media screen and (max-width: 500px) {
	header {
		height: 20vw;
		position: fixed;
		z-index: 3;
		box-shadow:
			rgba(27, 31, 35, 0.04) 0px 1px 0px,
			rgba(255, 255, 255, 0.25) 0px 1px 0px inset;
	}
	main {
		padding-top: 20vw;
		height: 150vw;
		flex-direction: column;
	}
	.contendR {
		width: 90%;
		height: 80%;
		margin: 20% 5% 0 5%;
		justify-content: flex-start;
	}
	.imgR {
		position: absolute;
		z-index: -1;
		opacity: 0.3;
		width: 90%;
		height: 50%;
		margin: 0 5%;
	}
	.imgR img {
		width: 100%;
		height: 100%;
		top: auto;
		left: auto;
		position: absolute;
	}
	.contendR h2 {
		font-size: 8vw;
	}
	.contendR p {
		font-size: 4vw;
	}
	#PassForm {
		margin-top: 4vw;
		width: 85%;
	}
	#PassForm label {
		font-size: 4vw;
		margin-bottom: 2.5vw;
	}
	#PassForm input {
		font-size: 4vw;
		margin-bottom: 3vw;
		border-radius: 0.5vw;
	}
	#PassForm button {
		padding: 2vw;
		font-size: 4vw;
		width: 70%;
		border-radius: 1vw;
		margin-top: 3vw;
	}
	.BtnR {
		top: 12%;
		position: absolute;
		right: 7%;
		width: 35%;
		font-size: 3.5vw;
	}
	footer {
		display: grid;
		grid-template-columns: 50% 50%;
		grid-template-rows: auto auto;
		min-height: 40vw;
		box-shadow:
			rgba(27, 31, 35, 0.04) 0px -1px 0px,
			rgba(255, 255, 255, 0.25) 0px -1px 0px inset;
	}
	footer a {
		font-size: 3.5vw;
	}
	footer span,
	footer p {
		font-size: 4vw;
	}
	#PdP {
		grid-area: 1/1/2/2;
	}
	#TdU {
		grid-area: 1/2/2/3;
	}
	#DR {
		grid-area: 2/1/3/3;
	}
}
