@font-face {
    font-family: 'pt_font';
    src: url('/font/PTSerif-Regular.ttf');
}
#app{

	background-image: url('/img/background_admin_form.svg');
}

.form{
	margin-top: 15vh;
	margin-bottom: 15vh;
	padding-top: 70px;
	padding-bottom: 50px;
	width: clamp(200px, 85%, 750px);
	background-color: white;
	border-radius: 25px;

	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.content_form{
	display: flex;
	flex-direction: column;
	align-items: center;
}

.form h1{
    font-family: 'pt_font';
	color:  #023E8A;
	margin-top: -30px;
	margin-bottom: 30px;
	text-align: center;
	margin-right: 20px;
	margin-left: 20px;
}

label{
	font-weight: bold;
	font-size: 19px;
}

.input{
	background-color: white;
	border-style: solid;
	border-top: 0px;
	border-left: 0px;
	border-right: 0px;
	font-size: 16px;
	color: #202124;
	width: 100%;
	padding-left: 0px;
	padding-right: 0px;
	padding-bottom: 4px;
}

.email_input_box{
	margin-bottom: 25px;
}

.password_input_box{
	height: 25px;
	position: relative;
	margin-bottom: 35px;
}

.connexion_submit_button{
	cursor: pointer;
	color: white;
	font-weight: bold;
	font-size: 14px;
	background: #023E8A;
	padding-top: 8px;
	padding-bottom: 8px;
	padding-left: 15px;
	padding-right: 15px;
	border-radius: 20px;
	border-style: none;
	margin: auto;
}


@media screen and (max-width: 450px) {
	.form h1{
		font-size: 28px;
	}
}
@media screen and (max-width: 320px) {
	.form h1{
		font-size: 8.5vw;
	}
}
