
/* Loginform*/
form{
	justify-content: center;
	text-align: left;
}

.containerInscpt{
    display:grid;
    flex-grow: 1;
	justify-content: center;
	grid-template-rows:1fr 0.2fr;
	
}

.inscript-box {
	
	width: 770px;
	color: #160505;
	top: 1%;
	left: 50%;
	position: relative;
	top: 10%;
	left:50%;
	transform: translate(-50%,1%);
	box-sizing: border-box;
	padding: 10px 20px;
	font-family:system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
	text-align: left;
	border: none;
	background: white;
	border-radius: 0.01em;
	box-shadow: 0.3em 0 .9em rgb(0 0 0 / 35%), -0.3em 0 .9em rgba(63, 63, 63, 0.479);
    
}

.identity span{
	display: flex;
}

.identity span > p{
	flex: 1;
	margin: 3px 10px;
}


#sp1 select{
	width: 100%;
	font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
	font-size: medium;
}


#sp1 label{
	font-size: medium;
	margin-left: 5px;
}


h1{
	margin: 0;
	padding: 0 0 10px;
	text-align: center;
	font-size: 25px;
	
}

.inscript-box  input[type="date"]{
	height: 25px;
	width: 100%;
	
}

.identity #sp1 > p > input[type="text"], input[type="email"]{
	width: 100%;
	align-items: end;
	font-size: medium;
	height: 25px;
	color: #0c0101;
	font-family:system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.identity #sp1 > p > input[type="password"]{
	width: 100%;
	align-items: end;
	font-size: medium;
	height: 25px;
	color: #0c0101;
	font-family:system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}


.inscript-box input[type="submit"]{
	border: none;
	outline: none;
	height: 30px;
	background:#0d8702;
	color: #fff;
	font-size: 18px;
	font-family:system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
	width: 100%;
	margin-top: 10px;
}

.inscript-box input[type="submit"]:hover
{
	cursor: pointer;
	background:#39dc79;
	border-style: outset;
	
}
.inscript-box a{
	text-decoration:none;
	color: #0c0101;
}

.inscript-box a:hover
{
	color: #39dc79;
}

/* The message box is shown when the user clicks on the password field */
#message, #message2 {
	display:none;
	background: #f1f1f1;
	color: #000;
	position: relative;
	padding: 20px;
	margin-top: 10px;
  }
  
  #message p, #message2 p {
	padding:10px 35px;
	
  }
  
  /* Add a green text color and a checkmark when the requirements are right */
  .valid {
	color: green;
  }
  
  .valid:before {
	position: relative;
	left: -35px;
	content: "✔";
  }
  
  /* Add a red text color and an "x" icon when the requirements are wrong */
  .invalid {
	color: red;
  }
  
  .invalid:before {
	position: relative;
	left: -35px;
	content: "✖";
  }


@media screen and (max-width: 962px){
	.inscript-box {
		width: 700px;
		color: #160505;
		top: 10%;
		left: 50%;
		position: relative;
		transform: translate(-50%,1%);
		box-sizing: border-box;
		padding: 10px 20px;
		font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
		text-align: left;
		

	}

	
	h1{
		margin: 0;
		padding: 0 0 10px;
		text-align: center;
		font-size: 25px;
		
	}
}

@media screen and (max-width: 768px){
	.inscript-box {
		width: 400px;
		color: #160505;
		top: 10%;
		left: 50%;
		position: relative;
		transform: translate(-50%,1%);
		box-sizing: border-box;
		padding: 10px 20px;
		font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
		text-align: left;
		
	}
	.identity span{
		display: block;
	}


	h1{
		margin: 0;
		padding: 0 0 10px;
		text-align: center;
		font-size: 18px;
		text-wrap: wrap;
		
		
	}
}