*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

*:focus{
	outline: none;
}

body{
	background-color: rgb(245, 245, 245);
	font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
	min-height: 90vh;
	display: flex;
	justify-content: center;
	align-items: center;
}

a{
	text-decoration: none;
}

input::placeholder{
	color: #5f5f5f;
}

.frame{
	width: 400px;
	margin: 15px auto;
}

.logo{
	width: 120px;
	height: 120px;
	margin: 0 auto 15px;
	background-color: #fff;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
}

.logo img{
	width: 100%;
}

.form-body{
	position: relative;
	background-color: #fff;
	border-radius: 7px;
	-webkit-border-radius: 7px;
	-moz-border-radius: 7px;
}

.form-sec{
	padding: 18px 25px;
}

.form-title{
	margin-bottom: 20px;
	font-weight: 400;
	color: rgb(59, 59, 59);
	text-align: center;
}

.form-group{
	margin-bottom: 10px;
}

.input input{
	display: block;
	width: 100%;
	padding: 12px 10px;
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: 4px;
	font-size: 13px;
	position: relative;
}

select{
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: 4px;
	margin-right: 5px;
	background-color: #fff;
	padding: 0 5px;
}

.input-group .input{
	width: 100%;
}

.input{
	position: relative;
}

.input-group{
	display: flex;
	width: 100%;
}

.invalid-feedback{
	color: #ff6b6b;
	font-size: 12px;
	display: none;
}

.invalid .invalid-feedback{
	display: block;
}

.invalid input{
	border-color: #ff6b6b;
}

.btn{
	width: 100%;
	padding: 13px 10px;
	background-color: #1abc9c;
	border: none;
	border-radius: 4px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	color: #fff;
	text-transform: uppercase;
	font-weight: 600;
	margin-top: 10px;
}

.btn:not(:disabled){
	cursor: pointer;
}

.btn:hover{
	background-color: #16a085;
}

.btn:disabled {
	background-color: #2bcbba;
	color: #fff;
	opacity: 0.6;
}

.form-footer{
	padding: 15px 12px;
	text-align: center;
	border-top: 1px solid #e9e9e9;
	color: #222;
	font-size: 13px;
}

@media only screen and (max-width: 480px) {
	.frame{
		width: 100%;
		margin: 15px;
	}
}