#page-recruitment-agent{
	overflow-x: hidden;
}
.agent-banner {}

.agent-banner__img {
	line-height: 0;
}

.agent-banner__ct {
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.16);
	top: 0;
	z-index: 111;
	display: flex;
	align-items: center;
	flex-direction: column;
	justify-content: center;
}

.agent-banner__ttl {
	color: white;
	margin-bottom: 15px;
}
.slider-agent{
	margin-bottom: 0;
}
.slider-agent .slick-list{
	margin: 0 -5px;
}
.slider-agent__item{
	margin: 0 5px;
}
.slider-agent__item img{
	object-fit: cover;
	aspect-ratio: auto;
}
.agent-policy {
	padding: 30px 0;
}

.agent-tab__link {
	border-bottom: 1px solid #ddd;
	gap: 5px;
}
.agent-tab__link li.active a{
	background: white;
	border-top-color: var(--color-main);
}
.agent-tab__link-wrap {
	background-color: rgb(0 0 0 / .04);
	border-left: 1px solid #ddd;
	border-right: 1px solid #ddd;
	border-top: 2px solid #ddd;
	padding-left: 15px;
	padding-right: 15px;
	display: block;
	margin-bottom: -1px;
	font-weight: 700;
}
.agent-tab__box{
	padding: 20px 0 0;
}
.agent-tab__ct{
	display: none;
}
.agent-tab__ct.active{
	display: block;
}
.agent-about{
	background: url(../images/group-9.png) no-repeat center/cover;
	padding: 50px 0;
}
.agent-about .title-blog{
	margin-bottom: 30px;
}
.agent-about__row{
	--gutter: 20px;
	gap: 20px 0;
}
.agent-about__ttl{
	margin-bottom: 10px;
}
.agent-photo{
	padding: 30px 0 0;
}
.agent-partner {
	padding: 30px 0;
	background: #f8f5f0;
}

.partner-slide {
	border: 7px solid var(--color-main);
	border-radius: 40px;
	background: #fff;
	padding: 20px;
	margin-top: 20px;
}
.partner-slide .slick-list{
	margin: 0 -5px;
}
.partner-slide__item {
	padding: 0 5px;
}
.partner-slide__link {
	padding-bottom: 50%;
	display: block;
	position: relative;
}

.partner-slide__link img {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	object-fit: contain;
}
/* Registration Form Block */
.registration-form {
	/* background: rgba(255, 255, 255, 0.95);
	border-radius: 20px; */
	padding: 40px;
	/* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1); */
	backdrop-filter: blur(10px);
	/* border: 1px solid rgba(255, 255, 255, 0.2); */

	width: 100%;
	animation: slideUp 0.6s ease-out;
}

.registration-form__title {
	text-align: center;
	color: #333;
	font-size: 2.2em;
	font-weight: 700;
	margin-bottom: 30px;
	background: linear-gradient(135deg, #667eea, #764ba2);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

/* Form Group Element */
.registration-form__group {
	margin-bottom: 25px;
	position: relative;
}

.registration-form__group--last {
	margin-bottom: 35px;
}

/* Input Elements */
.registration-form__input {
	width: 100%;
	padding: 16px 20px;
	border: 2px solid #e1e8ed;
	border-radius: 12px;
	font-size: 16px;
	font-family: inherit;
	transition: all 0.3s ease;
	background: rgba(255, 255, 255, 0.8);
	color: #333;
}

.registration-form__input:focus {
	outline: none;
	border-color: #667eea;
	box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
	background: rgba(255, 255, 255, 1);
	transform: translateY(-2px);
}

.registration-form__input::placeholder {
	color: #999;
	font-weight: 400;
}

/* Textarea Modifier */
.registration-form__input--textarea {
	min-height: 120px;
	resize: vertical;
	font-family: inherit;
}

/* Input States */
.registration-form__input--valid {
	border-color: #10b981;
	background: rgba(16, 185, 129, 0.05);
}

.registration-form__input--invalid {
	border-color: #ef4444;
	background: rgba(239, 68, 68, 0.05);
}

/* Label Elements */
.registration-form__label {
	position: absolute;
	left: 13px;
	top: -12px;
	color: #999;
	font-size: 16px;
	pointer-events: none;
	transition: all 0.3s ease;
	background: white;
	padding: 0 10px;
}

.registration-form__label--active {
	top: -8px;
	left: 16px;
	font-size: 12px;
	color: #667eea;
	background: white;
	padding: 0 8px;
	font-weight: 600;
}

/* Button Element */
.registration-form__button {
	width: 100%;
	padding: 18px;
	background: linear-gradient(135deg, #667eea, #13339b);
	color: white;
	border: none;
	border-radius: 12px;
	font-size: 18px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	cursor: pointer;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.registration-form__button::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
	transition: left 0.5s;
}

.registration-form__button:hover {

	box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

.registration-form__button:hover::before {
	left: 100%;
}

.registration-form__button:active {
	transform: translateY(-1px);
}

/* Button States */
.registration-form__button--loading {
	pointer-events: none;
	opacity: 0.8;
}

.registration-form__button--loading::after {
	content: '';
	position: absolute;
	width: 20px;
	height: 20px;
	margin: auto;
	border: 2px solid transparent;
	border-top-color: white;
	border-radius: 50%;
	animation: spin 1s linear infinite;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
}

/* Error Message Element */
.registration-form__error {
	color: #ef4444;
	font-size: 14px;
	margin-top: 8px;
	display: none;
	animation: fadeIn 0.3s ease;
}

.registration-form__error--visible {
	display: block;
}

/* Success Message Element */
.registration-form__success {
	background: rgba(16, 185, 129, 0.1);
	border: 1px solid #10b981;
	color: #065f46;
	padding: 15px;
	border-radius: 8px;
	margin-bottom: 20px;
	text-align: center;
	display: none;
	animation: fadeIn 0.3s ease;
}

.registration-form__success--visible {
	display: block;
}

/* Icon Elements */
.registration-form__icon {
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 18px;
	opacity: 0;
	transition: all 0.3s ease;
}

.registration-form__icon--valid {
	color: #10b981;
	opacity: 1;
}

.registration-form__icon--invalid {
	color: #ef4444;
	opacity: 1;
}

/* Animations */
@keyframes slideUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(10px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes spin {
	to {
		transform: rotate(360deg);
	}
}

/* Responsive Modifiers */
@media (max-width: 768px) {
	.registration-form {
		padding: 30px 20px;
		margin: 10px;
	}

	.registration-form__title {
		font-size: 1.8em;
		margin-bottom: 25px;
	}

	.registration-form__input {
		padding: 14px 16px;
		font-size: 16px;
	}

	.registration-form__button {
		padding: 16px;
		font-size: 16px;
	}
	.agent-policy{
		padding: 10px 0 20px
	}
	.agent-about{
		padding: 20px 0;
	}
	.agent-partner{
		padding: 20px 0 1px;
	}
}

@media (max-width: 480px) {
	.registration-form {
		padding: 25px 15px;
		margin: 0px;
	}

	.registration-form__title {
		font-size: 1.6em;
	}
}
