@import url('https://fonts.goo	gleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

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


body{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: antiquewhite;
    height: 100vh;
}


h1 {
	font-weight: 800;
	margin: 0;
	font-weight: 800;
}

h3 , h4{
	margin: 0;
}

p {
	font-size: 14px;
	font-weight: 200;
	line-height: 20px;
	letter-spacing: 0.5px;
	margin: 20px 0 30px;
}

span {
	font-size: 12px;
}

.formulaire{
    width: 768px;
    max-width: 100%;
    min-height: 520px;
    background-color: white;
    display: flex;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
	margin: 0 10px;
    font-family: 'Poppins',sans-serif;
}

.form-left, .info-right{
    flex: 0 0 50%;
}

.info-right{
    background-image: linear-gradient(to right , #fcbf28, #514016a8);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    padding:  0 40px;
}

button {
	border-radius: 20px;
	border: 1px solid #100a02;
	background-color: #100a02;
	color: #FFFFFF;
	font-size: 12px;
	font-weight: bold;
	font-family: 'Poppins',sans-serif;
	padding: 12px 45px;
	letter-spacing: 1px;
	text-transform: uppercase;
	cursor: pointer;
}

form {
	background-color: #FFFFFF;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	padding: 0 50px;
	height: 100%;
	text-align: center;
	gap: 25px;
}

form > img{
	width: 15rem;
	
}

form span{
	text-align: center;
}

input , select {
	background-color: #eee;
	border: none;
	padding: 12px 15px;
	margin: 8px 0;
	width: 100%;
	border-radius: 8px;
	outline: none;
}

[class^='fp'] > label:first-child{
	font-size: 13px;
	font-weight: bold;
	color: #ffa907;
}

[class^='fp'] > label:last-child{
	font-size: 13px;
	font-weight: bold;
	color: red;
}

.overlay-content ul > li{
	font-size: 14px;
}

.overlay-content ul > li:not(:last-child){
	margin-bottom: 10px;
}

/* RESPONSIVE */

@media screen and (max-width:760px) {
	.formulaire{
		flex-direction: column;
		gap: 30px;
		max-width: 88%;
	}

	.info-right{
		padding: 20px;
	}

	form{
		padding: 20px 0 0;
		gap: 30px;
	}

	.overlay-content >h1 ,.overlay-content p{
		text-align: center;
	}
}

@media screen and (max-width:640px) {
	input{
		width: 80%;
	}
}

@media screen and (max-width:500px) {
	.overlay-content > h1{
		font-size: 26px;
	}
}

@media screen and (max-width:400px) {
	.formulaire{
		max-width: 100%;
	}
}