/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* Poppins */
.poppins {
	font-family: 'Poppins', serif;
	font-style: normal;
}

.inter {
	font-family: 'Inter', serif;
	font-style: normal;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'inter', serif;
	font-style: normal;
	height: 100vh;
	width: 100vw;
}

input,
textarea {
	outline: none;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
	-webkit-background-clip: text;
}

.warning {
	background-color: #ea4e2d;
	color: #fff;
	border: 1.5px solid #ea4e2d;

	&:hover {
		background-color: transparent;
		color: #ea4e2d;
	}
}

.accept {
	background-color: #2096f3;
	color: #fff;
	border: 1.5px solid #2096f3;

	&:hover {
		background-color: transparent;
		color: #2096f3;
	}
}

.button-accept {
	cursor: pointer;
	padding: 5px 10px;
	font-weight: 600;
	border: #077180 solid 1px;
	background-color: #077180;
	color: #fff;
	transition: all ease 0.3s;

	&:hover {
		background-color: #fff;
		color: #077180;
	}
}

.button-action {
	cursor: pointer;
	padding: 7px 20px;
	font-weight: 600;
	border: #4cb1ff solid 1px;
	border-radius: 6px;
	background-color: #4cb1ff;
	color: #fff;
	transition: all ease 0.3s;

	&:hover {
		background-color: #fff;
		color: #4cb1ff;
	}
}