@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins',sans-serif;
}


.cont{
	max-width: 600px;
	margin-top: 20px;
	margin-right: auto;
	margin-bottom: 20px;
	margin-left: auto;
	padding-top: 0;
	padding-right: 20px;
	padding-bottom: 0;
	padding-left: 20px;
}
.rapa{
  width: 100%;
  background: #fff;
  border-radius: 5px;
  box-shadow: 0px 4px 10px 1px rgba(0,0,0,0.1);
}
.rapa .title{
	height: 5px;
	border-radius: 5px 5px 0 0;
	color: #fff;
	font-size: 30px;
	font-weight: 600;
	display: flex;
	align-items: center;
	justify-content: center;
	padding-top: 25px;
}
.rapa form{
  padding: 30px 25px 25px 25px;
}
.rapa form .row{
  height: 45px;
  margin-bottom: 15px;
  position: relative;
}
.rapa form .row input{
  height: 100%;
  width: 100%;
  outline: none;
  padding-left: 60px;
  border-radius: 5px;
  border: 1px solid lightgrey;
  font-size: 16px;
  transition: all 0.3s ease;
}
form .row input:focus{
  border-color: #16a085;
  box-shadow: inset 0px 0px 2px 2px rgba(26,188,156,0.25);
}
form .row input::placeholder{
  color: #999;
}
.rapa form .row i{
	position: absolute;
	width: 47px;
	height: 100%;
	color: #fff;
	font-size: 18px;
	border-radius: 5px 0 0 5px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #008A00;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #008A00;
	border-right-color: #008A00;
	border-bottom-color: #008A00;
	border-left-color: #008A00;
}
.rapa form .pass{
  margin: -8px 0 20px 0;
}
.rapa form .pass a{
  color: #16a085;
  font-size: 17px;
  text-decoration: none;
}
.rapa form .pass a:hover{
  text-decoration: underline;
}
.rapa form .button input{
	color: #fff;
	font-size: 20px;
	font-weight: 500;
	padding-left: 0px;
	cursor: pointer;
	background-color: #008A00;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #008A00;
	border-right-color: #008A00;
	border-bottom-color: #008A00;
	border-left-color: #008A00;
}
form .button input:hover{
  background: #12876f;
}
.rapa form .signup-link{
  text-align: center;
  margin-top: 20px;
  font-size: 17px;
}
.rapa form .signup-link a{
  color: #16a085;
  text-decoration: none;
}
form .signup-link a:hover{
  text-decoration: underline;
}
