* {
	font-family: "Gilroy", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
}

html,
body {
	overflow-x: hidden;
}

body {
	margin: 0;
}

button.underline {
	background: transparent;
	border: none;
	font-size: 16px;
	color: #000;
	border-bottom: 1px solid #000;
	cursor: pointer;
	transition: all, 0.2s ease-in-out;
	font-weight: bold;
	padding: 0;
}

button.underline:hover {
	font-weight: bold;
}

.page {
	background-size: cover !important;
	background-repeat: no-repeat !important;
	background-position: 65% center !important;
	padding: 35px 0;
	min-height: 100vh;
	box-sizing: border-box;
}

.page-head .logo,
.page-head .nomad-logo {
	margin: 0;
}

.form {
	color: #000;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.logo {
	margin: 0;
	width: max-content;
}

.form a {
	font-weight: bold;
	color: #000;
	text-decoration: none;
	width: max-content;
}

.form-head {
	color: #000;
	margin: 30px 0;
	position: relative;
}

.form-head > div:first-child {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	gap: 13px;
}

.form-head .profile-photo {
	margin: 0;
}

.form-head .title {
	font-weight: bolder;
	font-size: 35px;
	line-height: 1;
}

.form-head .title i {
	font-size: 25px;
	margin-left: 15px;
}

.form-head .success-title {
	font-weight: bolder;
	font-size: 30px;
	line-height: 30px;
	display: flex;
	align-items: flex-start;
}

.form-head .sub-title:last-child {
	display: flex;
	align-items: center;
	gap: 10px;
}

.form-head .sub-title:last-child span {
	display: block;
	flex: 1;
	height: 1px;
	background-color: #cccccc;
}

.form-head .information {
	margin-top: 20px;
	font-size: 20px;
	line-height: 1.5;
}

.form-head--verify > div:first-child {
	display: flex;
	margin-bottom: 10px;
}

.form-head--verify .information {
	margin: 0;
	display: block;
}

.form-head--verify .information span {
	color: #1980dd;
	font-weight: 700;
}

.form-body label {
	font-size: 15px;
	line-height: 20px;
	color: #000;
	display: block;
}

.form-body input:not([type="date"]),
select {
	border: 1px solid #d1d1d1;
	border-radius: 25px;
	height: 50px;
	line-height: 50px;
	padding: 0 35px;
	width: 100%;
	font-size: 16px;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	line-height: 20px;
	color: #000;
	box-sizing: border-box;
	outline: none !important;
}

input:focus {
	outline: none !important;
}

.form-body .form-check .form-check-input input[type="checkbox"] {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}

.form-body .form-check {
	cursor: pointer;
}

.form-body .form-check-input {
	width: 18px;
	height: 18px;
	position: relative;
	overflow: hidden;
	border-radius: 100%;
	margin-right: 10px;
	border: 2px solid #aaaaaa;
}

.form-body .checkmark {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	margin: 0;
}

.form-body .checkmark::before {
	content: "";
	width: 100%;
	height: 100%;
	background-color: #0da173;
	position: absolute;
	left: 0;
	top: 0;
	display: none;
}

.form-body .form-check input:checked ~ .checkmark::before {
	display: block;
}

.form-body select,
input[type="radio"] {
	-moz-appearance: none; /* Firefox */
	-webkit-appearance: none; /* Safari and Chrome */
	appearance: none;
}
.form-body input[type="date"] {
	padding-right: 15px;
}
.form-body input[type="date"]::-webkit-calendar-picker-indicator {
	opacity: 1;
	display: block;
	background: "mdi mdi-24px mdi-clock-outline" no-repeat;
	width: 24px;
	height: 24px;
	color: #ccc;
}

.form-body .custom-select,
.form-body .input-group {
	position: relative;
	display: inline-block;
	cursor: pointer;
}

.form-body .custom-select select {
	cursor: pointer;
	color: #d8d8d8;
}

.form-body .custom-select select option {
	color: #000;
}

.form-body .custom-select i,
.form-body .input-group i {
	position: absolute;
	right: 20px;
	top: 50%;
	font-size: 20px;
	transform: translateY(-50%);
	transform-origin: 50% 25%;
	transition: all, 0.2s ease-in-out;
	pointer-events: none;
	color: #969696;
}

.form-body .custom-select.open i {
	transform: rotate(180deg);
}

.form-body input::placeholder {
	color: #d8d8d8;
	opacity: 1; /* Firefox */
}

.form-body input::-ms-input-placeholder {
	/* Edge 12 -18 */
	color: #d8d8d8;
}

.form-body input[type="submit"],
.form-body button[type="submit"],
.verify a.submit-button,
.form-body a.submit-button {
	transition: all, 0.4s ease-in-out;
	cursor: pointer;
	background-color: transparent;
	border: 1px solid #03ced1;
	color: #009aac;
	font-weight: 600;
}

.form-body input[type="submit"]:hover,
.form-body button[type="submit"]:hover,
.verify a.submit-button:hover,
.form-body a.submit-button:hover {
	background-color: #009aac !important;
	color: white;
}

.form-body input[type="submit"].disabled {
	background-color: #272525 !important;
	color: #525252 !important;
}

.form-body .password-input {
	position: relative;
	width: 100%;
}

.form-body .password-input i {
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 20px;
	color: #969696;
	cursor: pointer;
}

.form-footer {
	margin: 25px 0 0 0;
}

.form-footer p {
	margin: 0;
}

.form-footer.sign-in a {
	color: #e13f4e;
}

.form-footer.sign-in p {
	color: #696969;
}

.verify figure {
	margin: 0;
}

.verify p {
	margin: 0;
}

.login .user-profile {
	width: 50px;
	height: 50px;
	border-radius: 100%;
	background: #ccc;
	text-align: center;
	line-height: 50px;
	margin: 0;
}

.recover2-form-input-group {
	color: white;
	display: flex;
	gap: 8px;
	width: 100%;
}
.recover2-form-input-group input {
	width: 45px !important;
	height: 45px !important;
	border-radius: 15px !important;
	padding: 0 !important;
	border: 1px solid #d0d0d0;
	text-align: center;
	font-weight: bold;
	font-size: 30px;
	background-color: #f8f8f8;
}
.submit-button {
	background-color: #9c1630;
	transition: all, 0.4s ease-in-out;
	cursor: pointer;
	line-height: 20px;
	font-size: 15px;
	color: #000;
	padding: 15px 0;
	min-width: 300px;
	border-radius: 25px;
	border: none;
	position: relative;
	display: block;
	text-align: center;
}

.submit-button:hover {
	background-color: #7a021a;
}

.loader {
	position: absolute;
	top: 50%;
	right: 20px;
	width: 20px;
	height: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: transparent;
	transform: translateY(-50%);
	transition: opacity 0.75s, visibility 0.75s;
}

.loader-hidden {
	opacity: 0;
	visibility: hidden;
}

.loader::after {
	content: "";
	width: 20px;
	height: 20px;
	border: 2px solid #000;
	border-top-color: transparent;
	border-radius: 50%;
	animation: loading 0.75s ease infinite;
}

.toast-container {
	position: fixed;
	top: 50px;
	right: 20px;
	z-index: 9999;
	gap: 10px;
	transition: transform 0.3s ease, opacity 0.3s ease;
}

.toast-container.hidden {
	transform: translateX(calc(100% + 20px));
	opacity: 0;
	pointer-events: none;
}

.toast-messages {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
}

.toast-message {
	background-color: #f44336;
	width: 300px;
	color: #fff;
	padding: 10px 20px;
	margin-bottom: 16px;
	border-radius: 5px;
	font-size: 14px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	animation: slide-in 0.5s ease-out;
	position: relative;
}

.toast-message button.close-btn {
	background: none;
	border: none;
	color: white;
	font-size: 20px;
	font-weight: bold;
	cursor: pointer;
	padding: 0 5px;
}

.toast-message button.close-btn:hover {
	color: #ffcccc;
}

@keyframes slide-in {
	from {
		transform: translateX(calc(100% + 20px));
		opacity: 0;
	}
	to {
		transform: translateX(0);
		opacity: 1;
	}
}

@keyframes loading {
	from {
		transform: rotate(0turn);
	}

	to {
		transform: rotate(1turn);
	}
}

.validation-error {
	margin: 0.75rem 0;
	width: 13.75rem;
	font-size: 0.875rem;
	display: flex;
	gap: 0.75rem;
	color: #ae2a19;
}

.validation-error-hidden {
	display: none;
}

.recover2-form-button-group {
	display: flex;
	align-items: center;
	gap: 5px;
	margin-top: 24px;
}

.recover-form-send-again-button {
	padding: 0;
	border: none;
	background-color: transparent;
	color: #e13f4e;
	font-weight: 700;
}

.text-danger {
	background: rgba(184, 0, 0, 0.5);
	padding: 15px;
	border-radius: 5px;
	margin-bottom: 15px;
}
.text-danger ul {
	margin: 0;
}

.g-recaptcha {
	margin-bottom: 24px;
}

.recaptcha-error {
	color: red;
	padding: 5px;
	border-radius: 5px;
}

.recaptcha-error.hidden {
	display: none;
}

@media (min-width: 1100px) {
	.form-head {
		margin: 20px 0;
	}

	.form-head .title {
		font-size: 45px;
	}

	.form-container,
	.feature-card {
		min-height: calc(100% - 40px);
	}
}

@media (min-width: 2000px) {
	.form-container {
		margin-right: 15vw;
	}
}
