@import url('https://fonts.googleapis.com/css2?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');
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "Poppins", sans-serif;
}
body, html {
	height: 100%;
}
body {
	background: url('') no-repeat center center fixed;
	background-size: cover;
	display: flex;
	justify-content: center;
	align-items: center;
}
.form-container {
    background: rgb(0 0 0 / 25%);
    padding: 40px 75px;
    border-radius: 12px;
    max-width: 640px;
    width: 90%;
    color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}
.form-container img {
	display: block;
	margin: 0 auto 20px auto;
	max-width: 300px;
}
.form-container h2 {
	text-align: center;
	margin-bottom: 30px;
	color: var(--themeColor);
	font-weight: normal;
}
.form-group {
	margin-bottom: 20px;
}
.form-group input, .form-group textarea {
	width: 100%;
	padding: 12px;
	border: none;
	border-radius: 6px;
	font-size: 14px;
	background: none;
    border-bottom: 1px solid #ffffff1f;
	outline: none !important;
	color: #fff;
}
.form-group input::placeholder, .form-group textarea::placeholder {
	color: #eaeaea;
}
.form-group textarea {
	resize: vertical;
	min-height: 100px;
	max-height: 200px;
}
.form-options {
	margin: 20px 0;
}
.form-options label {
	display: flex;
	flex-direction: row;
	align-items: center;
	padding: 5px 0;
}
.form-options span.form-title {
	color: var(--themeColor);
	margin-bottom: 10px;
	display: block;
}
.form-options input[type="checkbox"] {
	margin-right: 10px;
}
.form-submit button {
	width: 100%;
	padding: 12px;
	background-color: var(--themeColor);
	border: none;
	color: var(--textColor);
	font-size: 16px;
	border-radius: 6px;
	cursor: pointer;
	transition: background 0.3s ease;
}
.form-submit button:hover {
	background-color: var(--themeColor2);
}
.form-submit button[disabled] {
	opacity: 0.5;
	cursor: wait;
}
input[type="checkbox"] {
	appearance: none;
	width: 20px;
	height: 20px;
	border: 2px solid #ffffff7a;
	border-radius: 4px;
	background-color: transparent;
	cursor: pointer;
	transition: all 0.2s ease-in-out;
	outline: none !important;
	display: flex;
    justify-content: center;
    align-items: center;
}
input[type="checkbox"]:checked {
	background-color: var(--themeColor);
	border-color: var(--themeColor2);
}
input[type="checkbox"]:checked:after {
	content: '\2714';
	font-size: 11px;
	color: #fff;
	opacity: 1;
}
@media (max-width: 480px) {
	.form-container {
		padding: 30px 20px;
	}
}
.btn-theme {
	background-color: var(--themeColor);
	color: var(--textColor);
}
.floating-label {
	position: relative;
	margin-bottom: 20px;
}
.floating-label label {
	position: absolute;
	left: 12px;
	top: 14px;
	color: #fff;
	font-size: 14px;
	pointer-events: none;
	transition: 0.2s ease all;
}
.floating-label textarea:focus + label,
.floating-label input:focus + label,
.floating-label textarea:not(:placeholder-shown):valid + label,
.floating-label input:not(:placeholder-shown):valid + label
{
	top: -9px;
	font-size: 12px;
	color: var(--themeColor);
}
input:-webkit-autofill {
	background-color: transparent !important;
	-webkit-box-shadow: 0 0 0px 1000px transparent inset !important;
	-webkit-text-fill-color: white !important;
	transition: background-color 9999s ease-in-out 0s;
}
input:-webkit-autofill:focus {
	background-color: transparent !important;
}
input:-moz-autofill {
	box-shadow: 0 0 0px 1000px transparent inset !important;
	-moz-text-fill-color: white !important;
}
.blocker {
    position: fixed;
    width: 100%;
    height: 100%;
    background: #ff000000;
    z-index: 999999999;
}