.auth-link img {
	width: 15%;
}
.range-container {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	gap: 1.5rem;
}
.range-slider {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 1rem;
	width: 100%;
}
.rs-label {
	position: relative;
	transform-origin: center center;
	display: flex;
	align-items: center;
	justify-content: center;
	background: transparent;
	text-align: center;
	font-weight: bold !important;
	box-sizing: border-box;
	left: attr(slider);
	color: var(--textColor);
	font-style: normal;
	font-size: var(--fs-text-a);
}
.slider {
	width: 100%;
}
.rs-label::after {
	content: "\00a0 km";
	display: block;
	font-size: var(--fs-text-icons);
	letter-spacing: 0.07em;
}
.rs-range {
	margin-top: 0.5rem;
	width: 100%;
	-webkit-appearance: none;
	appearance: none;
}
.rs-range:focus {
	/* outline: none; */
}
.rs-range::-webkit-slider-runnable-track {
	width: 100%;
	height: 1px;
	cursor: pointer;
	box-shadow: none;
	background: var(--primaryColor);
	border-radius: 0px;
	border: 0px solid #010101;
}
.rs-range::-moz-range-track {
	width: 100%;
	height: 1px;
	cursor: pointer;
	box-shadow: none;
	background: var(--primaryColor);
	border-radius: 0px;
	border: 0px solid #010101;
}
.rs-range::-webkit-slider-thumb {
	box-shadow: none;
	border: 0px solid var(--primaryColor);
	box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.25);
	height: 42px;
	width: 22px;
	border-radius: 22px;
	background: var(--secondaryColor);
	cursor: pointer;
	-webkit-appearance: none;
	margin-top: -20px;
}
.rs-range::-moz-range-thumb {
	box-shadow: none;
	border: 0px solid var(--primaryColor);
	box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.25);
	height: 42px;
	width: 22px;
	border-radius: 22px;
	background: var(--secondaryColor);
	cursor: pointer;
	-webkit-appearance: none;
	appearance: none;
	margin-top: -20px;
}
.rs-range::-moz-focus-outer {
	border: 0;
}
.box-minmax {
	width: 100%;
	display: flex;
	justify-content: space-between;
	font-size: var(--fs-text);
	color: var(--textColor);
}
.box-minmax span::after {
	content: "km";
	display: block;
	font-size: var(--fs-text-icons);
	letter-spacing: 0.07em;
}
.box-minmax span {
	display: flex;
	gap: 0.5rem;
}
.hide {
	display: none !important;
}
.iti {
	width: 100%;
}

/* Stiluri pentru noul formular de înregistrare */
.animate-fade-in {
  animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

#password-criteria .crit-item {
    display: inline-block;
    margin: 2px 5px 2px 0;
    padding: 3px 8px;
    border-radius: 15px;
    background-color: #f0f0f0;
    color: #6c757d;
    transition: all 0.3s ease;
    font-size: 0.8rem;
}

#password-criteria .crit-item.valid {
    background-color: #d1e7dd; /* Bootstrap success light */
    color: #0f5132; /* Bootstrap success dark */
}

#password-criteria .crit-item.valid::before {
    content: '✓ ';
    font-weight: bold;
}