@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700&display=swap');

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Poppins', sans-serif;
}
body {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #ecf4ff;
}
a {
	color: #333;
}
.wrapper {
	position: relative;
	max-width: 430px;
	width: 100%;
	background: #fff;
	padding: 34px;
	border-radius: 6px;
	box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}
.wrapper h1 {
	position: relative;
	font-size: 25px;
	font-weight: 600;
	color: #333;
}
.wrapper h1::before {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	height: 3px;
	width: 28px;
	border-radius: 12px;
	background: #007bff;
}
.wrapper form {
	margin-top: 20px;
}
.wrapper form .input-box {
	margin-top: 18px;
}
form .input-box input,
form .input-box button {
	height: 52px;
	width: 100%;
	outline: none;
	padding: 0 15px;
	font-size: 17px;
	font-weight: 400;
	color: #333;
	border: 1.5px solid #C7BEBE;
	border-bottom-width: 2.5px;
	border-radius: 6px;
	transition: all 0.3s ease;
}
.input-box input:focus,
.input-box input:valid {
	border-color: #007bff;
}
.input-box .errors {
	color: #cc3636;
	font-size: 15px;
}
.input-box .errors ul {
	list-style: none;
}
form .policy {
	display: flex;
	align-items: center;
}
form label {
	color: #707070;
	font-size: 14px;
	font-weight: 500;
	margin-left: 10px;
}
.wrapper form .input-box.button {
	margin-bottom: 0;
}
.input-box.button button {
	color: #fff;
	letter-spacing: 1px;
	border: none;
	background: #007bff;
	cursor: pointer;
}
.input-box.button button:hover {
	background: #0e4bf1;
}
.existing-account {
	text-align: center;
	font-size: 15px;
	margin-top: 8px;
	color: #555;
}
.existing-account a {
	color: #333;
}
.alert {
	margin-top: 15px;
	background: #ecf4ff;
	padding: 10px 15px;
	border-radius: 5px;
	color: #fff;
	font-size: 15px;
}
.alert.alert-danger {
	background: #cc3636;
}
.alert.alert-warning {
	background: #cc8136;
}
.alert.alert-success {
	background: #40cc36;
}
.container.dashboard input[disabled] {
	padding-right: 40px;
}
.content {
	margin-top: 20px;
}
.footer {
	margin-top: 15px;
  	display: flex;
  	justify-content: space-between;
}
.infobox {
	position: relative;
	border-radius: 30px;
}
.copylink {
	position: absolute;
	top: 50%;
	right: 25px;
	cursor: pointer;
	transform: translateY(-50%);
}
.copylink:hover:after {
	opacity: 1;
	transform: translateY(0) translateX(-50%);
}
.copylink:after {
	content: attr(tooltip);
	width: 140px;
	bottom: 16px;
	left: 50%;
	padding: 5px;
	border-radius: 4px;
	font-size: 0.8rem;
	opacity: 0;
	pointer-events: none;
	position: absolute;
	background-color: #000000;
	color: #ffffff;
	transform: translateY(-10px) translateX(-50%);
	transition: all 300ms ease;
	text-align: center;
}
i.fa-regular.fa-copy:before {
	content: "";
	background: url("/images/icons/copy.svg") 0 0 no-repeat;
	background-size: contain;
	width: 17px;
	height: 21px;
	position: absolute;
	top: -11px;
	right: -10px;
}
.copylink i {
	font-size: 20px;
	color: #ff0a4b;
}
.version {
	position: absolute;
	bottom: 5px;
	width: calc(100% - 68px);
	text-align: center;
	color: #aaa;
	font-size: 14px;
}
