/* --------------
Login desing
-----------------*/




.wrapper {
	align-items: center;
	border-radius: 5px;
	margin-bottom: 30px;
  }

  .wrapper .title {
	height: 120px;
	background: #b99044;
	border-radius: 5px 5px 0 0;
	color: #fff;
	font-size: 30px;
	font-weight: 600;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 500px;
	display: grid;
	place-items: center;
	margin: auto;
	
  }
  .wrapper form {
	padding: 25px 35px;
	width: 500px;
	display: grid;
	place-items: center;
	margin: auto;
	border: solid 1px #b99044;
	border-radius: 5px;
  }
  .wrapper form .row {
	height: 60px;
	margin-top: 15px;
	position: relative;
  }
  .wrapper form .row input {
	height: 100%;
	width: 100%;
	outline: none;
	padding-left: 70px;
	border-radius: 5px;
	border: 1px solid lightgrey;
	font-size: 18px;
	transition: all 0.3s ease;
  }
  form .row input:focus {
	border-color: #b99044;
  }
  form .row input::placeholder {
	color: #999;
  }
  .wrapper form .row i {
	position: absolute;
	width: 55px;
	height: 100%;
	color: #fff;
	font-size: 22px;
	background: #b99044;
	border: 1px solid #b99044;
	border-radius: 5px 0 0 5px;
	display: flex;
	align-items: center;
	justify-content: center;
  }
  .wrapper form .pass {
	margin-top: 12px;
  }
  .wrapper form .pass a {
	color: #b99044;
	font-size: 17px;
	text-decoration: none;
  }
  .wrapper form .pass a:hover {
	text-decoration: underline;
  }
  .wrapper form .button input {
	margin-top: 20px;
	color: #fff;
	font-size: 20px;
	font-weight: 500;
	padding-left: 0px;
	background: #b99044;
	border: 1px solid #b99044;
	cursor: pointer;
  }
  form .button input:hover {
	background: #b99044;
  }
  .wrapper form .signup-link {
	text-align: center;
	margin-top: 45px;
	font-size: 17px;
  }
  .wrapper form .signup-link a {
	color: #b99044;
	text-decoration: none;
  }
  form .signup-link a:hover {
	text-decoration: underline;
  } 