/*=========================================
AUTH MODAL
=========================================*/
.auth_box_unique {
	background: linear-gradient(180deg, #111111, #17171c, #0e0e12);
	border: none;
	border-radius: 18px;
	padding: 10px;
}

.auth_title_unique {
	color: #ffffff;
	font-size: 26px;
	font-weight: 600;
	margin-bottom: 8px;
	font-family: var(--font-inter);
}

.auth_para_unique {
	color: #ffffff;
	margin-bottom: 25px;
	font-size: 14px;
	font-family: var(--font-inter);
	font-weight: 400;
}

.auth_para_unique a {
	color: var(--secondary-color);
	text-decoration: none;
	font-family: var(--font-inter);
	font-weight: 700;
	text-transform: capitalize;
}

/*=========================================
INPUT
=========================================*/
.auth_input_wrap_unique {
	position: relative;
	margin-bottom: 16px;
}

.auth_input_wrap_unique input {
	width: 100%;
	height: 54px;
	background: #2a2a2e;
	border: none;
	outline: none;
	border-radius: 12px;
	padding: 0 48px 0 16px;
	color: #ffffff;
	font-family: var(--font-inter);
	font-weight: 400;
	font-size: 15px;
}

.auth_input_wrap_unique input::placeholder {
	color: #ffffff;
}

.auth_input_wrap_unique i {
	position: absolute;
	right: 16px;
	top: 50%;
	transform: translateY(-50%);
	color: #aaa;
	cursor: pointer;
	font-size: 15px;
}

/*=========================================
REMEMBER ROW
=========================================*/
.auth_flex_unique {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 18px;
	gap: 10px;
	flex-wrap: wrap;
}

.auth_check_unique {
	display: flex;
	align-items: center;
	gap: 8px;
}

.auth_check_unique input {
	accent-color: #d79a3f;
	width: 16px;
	height: 16px;
	cursor: pointer;
	appearance: none;
	border: 1px solid #636363;
	border-radius: 5px;
	background: var(--header-bg);
	position: relative;
}

.auth_check_unique input:checked {
	background: var(--secondary-color);
}
.auth_check_unique input:checked::after {
	content: "";
	position: absolute;
	left: 5px;
	top: 2px;
	width: 4px;
	height: 8px;
	border: solid #fff;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}
.auth_check_unique label {
	color: #fff;
	font-size: 14px;
	margin: 0;
	font-family: var(--font-inter);
	font-weight: 500;
	cursor: pointer;
}

.auth_flex_unique a {
	color: #ffffff;
	font-size: 14px;
	text-decoration: none;
	font-family: var(--font-inter);
	font-weight: 400;
}

/*=========================================
BUTTON
=========================================*/
.auth_btn_unique {
	width: 100%;
	height: 54px;
	border: none;
	border-radius: 8px;
	background: #d79a3f;
	color: #fff;
	font-size: 17px;
	transition: 0.3s;
	font-family: var(--font-inter);
	font-weight: 500;
	text-transform: uppercase;
}

.auth_btn_unique:hover {
	background: #bf8327;
}

/*=========================================
TERMS CHECKBOX
=========================================*/
.auth_terms_unique {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 18px;
}

.auth_terms_unique p {
	margin: 0;
	color: #636363;
	font-size: 14px;
	font-family: var(--font-inter);
	font-weight: 400;
}

.auth_terms_unique a {
	color: #d79a3f;
	text-decoration: none;
	font-family: var(--font-inter);
	font-weight: 500;
}

/* custom checkbox */
.custom_check_unique {
	position: relative;
	width: 20px;
	height: 20px;
	display: block;
	margin: 0;
	flex-shrink: 0;
}

.custom_check_unique input {
	opacity: 0;
	position: absolute;
}

.custom_check_unique span {
	position: absolute;
	inset: 0;
	border: 2px solid #636363;
	background: var(--header-bg);
	border-radius: 4px;
	cursor: pointer;
}

.custom_check_unique input:checked + span {
	background: #d79a3f;
}

.custom_check_unique input:checked + span::after {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    position: absolute;
    left: 3px;
    top: 0px;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
}

/*=========================================
OTP BOXES
=========================================*/
.otp_wrap_unique {
	margin-bottom: 22px;
}

.otp_wrap_unique input {
	width: 48px;
	height: 55px;
	border: none;
	outline: none;
	border-radius: 12px;
	background: #2a2a2e;
	color: #ffffff;
	font-size: 22px;
	font-weight: 400;
	text-align: center;
	font-family: var(--font-inter);
}

/*=========================================
MOBILE
=========================================*/
@media (max-width: 575px) {
	.auth_box_unique {
		padding: 8px;
	}

	.auth_title_unique {
		font-size: 28px;
	}

	.auth_para_unique {
		font-size: 14px;
	}

	.auth_input_wrap_unique input {
		height: 50px;
		font-size: 14px;
	}

	.auth_btn_unique {
		height: 50px;
		font-size: 15px;
	}

	.otp_wrap_unique input {
		width: 42px;
		height: 48px;
		font-size: 18px;
	}
}
