@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Poppins', sans-serif
}

@-webkit-keyframes autofill {
	0%,100% {
		color: #666;
		background: transparent;
	}
}

input:-webkit-autofill {
	-webkit-animation-delay: 1s; /* Safari support - any positive time runs instantly */
	-webkit-animation-name: autofill;
	-webkit-animation-fill-mode: both;
}

/* Change the white to any color ;) */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active  {
	border-radius: 45px;
	left: -11px;
	box-shadow: inset -2px 9px 15px #cbced1, inset -8px -12px 13px #fff;
}


body {
	background: #ecf0f3;
	padding-bottom: 60px;
}


.auth-wrapper {
	max-width: 460px;
	min-height: 300px;
	margin: 80px auto;
	padding: 40px 30px 30px 30px;
}

.wrapper {
	background-color: #ecf0f3;
	border-radius: 15px;
	box-shadow: 13px 13px 20px #cbced1, -13px -13px 20px #fff
}

.logo {
	width: 80px;
	margin: auto
}

.logo img {
	width: 100%;
	height: 80px;
	object-fit: cover;
	border-radius: 50%;
	box-shadow: 0px 0px 3px #5f5f5f, 0px 0px 0px 5px #ecf0f3, 8px 8px 15px #a7aaa7, -8px -8px 15px #fff
}

.wrapper .name {
	font-weight: 600;
	font-size: 1.2rem;
	letter-spacing: 1.3px;
	color: #555
}

.wrapper .form-field input, .wrapper .form-field textarea {
	width: 100%;
	display: block;
	border: none;
	outline: none;
	background: none;
	font-size: 1.2rem;
	color: #666;
	padding: 10px 15px 10px 10px
}

.wrapper .form-field {
	padding-left: 10px;
	margin-bottom: 20px;
	border-radius: 20px;
	box-shadow: inset 8px 8px 8px #cbced1, inset -8px -8px 8px #fff
}

.wrapper .form-field .fas {
	color: #555
}

.wrapper .btn {
	box-shadow: none;
	width: 100%;
	height: 40px;
	background-color: #03A9F4;
	color: #fff;
	border-radius: 25px;
	box-shadow: 3px 3px 3px #b1b1b1, -3px -3px 3px #fff;
	letter-spacing: 1.3px;
	outline: none;
	border: none;
}

.wrapper .btn:hover {
	background-color: #039BE5
}

.wrapper a {
	text-decoration: none;
	font-size: 1rem;
	color: #03A9F4
}

.wrapper a:hover {
	color: #039BE5
}
footer{
	position: absolute;
	bottom: 0;
	padding: 16px;
	text-align: center;
	display: block;
	width: 100%;
	padding-top: 50px;;
}

@media(max-width: 380px) {
	.wrapper {
		margin: 30px 20px;
		padding: 40px 15px 15px 15px
	}
}

.offer-single{
	border-left: 4px solid rgb(153, 153, 153);
	background-color: rgb(232, 232, 232);
}
