/** @format */

.App {
	text-align: center;
  }
  div {
	box-sizing: border-box;
  }
  .admin {
	height: 100%;
	margin: 0;
	padding: 0;
	font-family: sans-serif;
	background: radial-gradient(white, white);
  }
  .limiter {
	width: 100%;
	margin: 0 auto;
  }
  
  .container-login100 {
	width: 100%;
	min-height: 100vh;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	padding: 15px;
	background-repeat: no-repeat;
	background-position: 50%;
	background-size: cover;
	position: relative;
	z-index: 1;
  }
  
  .wrap-login100 {
	width: 490px;
	border-radius: 10px;
	overflow: hidden;
	background: transparent;
	border: 2px solid gray;
	box-shadow: 3px 10px 20px 10px rgb(0 0 0 / 50%);
  }
  
  .box {
	/* width: 500px; */
	/* padding: 40px; */
	/* position: absolute;
	  top: 50%;
	  left: 50%; */
	background: #fff;
	height: auto !important;
  
	/* text-align: center;
	  transition: 0.25s;
	  margin-top: 100px */
  }
  
  .box input[type='text'],
  .box input[type='password'],
  .box input[type='email'] {
	border: 0;
	background: none;
	display: block;
	margin: 20px auto;
	text-align: center;
	border: 2px solid #02807c;
	padding: 10px 10px;
	width: 250px;
	outline: none;
	color: black;
	border-radius: 24px;
	transition: 0.25s;
  }
  
  .box h2 {
	color: blue;
	text-transform: uppercase;
	font-weight: bold;
  }
  
  .box input[type='text']:focus,
  .box input[type='email']:focus,
  .box input[type='password']:focus {
	width: 300px;
	border-color: #b92b27;
  }
  
  .box input[type='submit'] {
	background: #02807c;
	color: cornsilk;
	border: 0;
	/* background: none; */
	display: block;
	margin: 20px auto;
	text-align: center;
  
	padding: 14px 40px;
	outline: none;
	/* color: black; */
	border-radius: 24px;
	transition: 0.25s;
	cursor: pointer;
  }
  
  .box input[type='submit']:hover {
	background: #b92b27;
  }
  
  .forgot {
	text-decoration: underline;
  }
  /* body {
	  margin: 0;
	  padding: 0;
	  font-family: sans-serif;
	  background: linear-gradient(to right, #b92b27, #1565c0)
	} */
  
  .card {
	/* margin-bottom: 20px; */
	border: none;
  }
  
  .Apply {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-direction: column;
	flex-direction: column;
	-webkit-align-items: center;
	align-items: center;
	-webkit-justify-content: center;
	justify-content: center;
	width: 40%;
	box-shadow: 3px 10px 20px 10px rgb(0 0 0 / 50%);
	margin: 2rem auto 0;
	padding: 1rem;
	border-radius: 30px;
  }
  