@import url('https://fonts.googleapis.com/css?family=Poppins');
@import url('https://fonts.googleapis.com/css?family=Roboto');

*{
	margin: 0;
	padding: 0;
	scroll-behavior: smooth;
	font-family: 'Poppins', sans-serif;
}
body{
	margin: 0;
	padding: 0;
	background: #244567;
}
a{
	color: #370d75;
	text-decoration: none;
}
.remember-me{
	margin-right: 10px;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

::-webkit-scrollbar {
  	width: 5px;
}
::-webkit-scrollbar-track {
  	background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
  	background: #888;
}
::-webkit-scrollbar-thumb:hover {
  	background: #555;
}
#form-wrapper{
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(0, 0, 0, 0.1);
}

form{
	display: flex;
	width: 35%;
	background: rgba(255, 255, 255, 0.99);
	flex-direction: column;
	align-items: center;
	padding: 10px 0px;
	border-radius: 3px;
	box-sizing: border-box;
/*	box-shadow: 0px 0px 5px #999;*/
}
.logo{
	padding: 20px 0px;
}
.form-b{
	width: 300px;
}
.form-group{
	width: 100%;
	padding: 5px 0px;
}
.form-group a{
	font-size: 15px;
	font-weight: bold;
}
.form-group-b{
	display: flex;
	width: calc(100% - 40px);
	padding: 10px 0px;
	color: #555;
	flex-direction: row;
}
.form-group-b input[type="checkbox"]{
	width: calc(30px);
	font-size: 17px;
	border-radius: 5px;
	outline: none;
	border: 1px solid #999;
}
.form-group input{
	width: calc(100% - 60px);
	margin: 0 20px;
	padding: 5px 10px;
	font-size: 15px;
	border: none;
	outline: none;
	transition: 0.5s;
	background: transparent;
	border-bottom: 1px solid #999;
}
.form-group input:focus{
	border-bottom: 1px solid #370d75;
}
.form-group span{
	padding: 0px 20px;
	color: #555;
}
select{
	width: calc(100% - 60px);
	margin: 0px 20px;
	padding: 5px 10px;
	font-size: 15px;
	border: none;
	outline: none;
	transition: 0.5s;
	background: transparent;
	border-bottom: 1px solid #999;
}
.error-wrapper{
	width: calc(100% - 60px);
	padding: 7px 10px;
	color: deeppink;
	margin: 0px 20px;
	border-radius: 5px;
	text-align: center;
	background: #f7c3e5;
	border: 1px solid pink;
}
.successful-wrapper{
	width: calc(100% - 40px);
	padding: 7px 10px;
	color: #0b961d;
	margin: 0 10px;
	border-radius: 5px;
	text-align: center;
	background: #84fa94;
	border: 1px solid #0b961d;			
}
.form-group-button{
	display: grid;
	width: calc(100% - 20px);
	margin: 0px 10px;
	grid-template-columns: 100%;
}
.form-group-button button, .form-group button{
	padding: 7px 10px;
	font-size: 17px;
	border-radius: 5px;
	outline: none;
	border: none;
	margin: 10px;
	cursor: pointer;
	color: #fff;		
}
.form-group button{
	
}		
#signup{
	background: #d4204a;
	margin-left: 10px;
}
#reset{
	background: #370d75;
}
#go-back{
	background: #135e87;
}
.divider{
	display: flex;
	padding: 5px 20px;
	width: calc(100% - 40px);
	flex-direction: row;
	align-items: center;
}
.divider span{
	display: block;
	height: 40px;
	width: 40px;
	border-radius: 50%;
	color: #555;
	line-height: 40px;
	text-align: center;
	background: rgba(0, 0, 0, 0.07);
}
.divider hr{
	border: none;
	height: 1px;
	margin: 0;
	padding: 0;
	width: calc(50% - 20px);
	background: #999;
}



.digits-wrapper{
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
}
.digits-wrapper input{
	margin: 10px 0px;
	margin-right: 10px;
	width: 20px;
	padding: 5px 8px;
	outline: none;
	font-size: 15px;
	border: none;
	background: transparent;
	border-radius: 0px;
	border-bottom: 2px solid #370d75;
}
hr{
	border: none;
	height: 1px;
	background: silver;
	margin: 5px 10px;
	width: calc(100% - 20px);
}
.forgot-password{
	text-align: left;
	text-decoration: none;
	margin-left: 10px;
}
.create-account{
	padding: 7px 0px;
	border-radius: 5px;
	color: #fff;
	display: block;
	margin: 0px 10px;
	text-decoration: none;
	text-align: center;
	background: crimson;	
}
.client-login{
	padding: 7px 0px;
	border-radius: 2px;
	color: #fff;
	display: block;
	margin: 0px 20px;
	text-decoration: none;
	text-align: center;
}
.client-login-a{
	background: darkcyan;
}
.client-login-b{
	background: darkslateblue;
}
.login-options{
	padding: 10px;
}
.login-options img{
	margin: 5px;
}


@media (max-width: 800px) {
	form{
		width: 350px;
	}
}
@media (max-width: 300px) {
	form{
		width: 280px;
	}
}