/* ====================================
    Career Page CSS - Ultra Modern & Impressive
    sr- prefix for all classes
==================================== */

/* Root Colors & Variables */
:root {
	--sr-primary: #1e4182;
	--sr-primary-dark: #061d4a;
	--sr-primary-light: #2665d8;
	--sr-accent: #1b5fdc;
	--sr-accent-light: #275bbc;
	--sr-text-dark: #0f0f0f;
	--sr-text-light: #6b7280;
	--sr-text-muted: #9ca3af;
	--sr-bg-dark: #f1f5f9;
	--sr-bg-white: #ffffff;
	--sr-glass: rgba(255, 255, 255, 0.7);
	--sr-shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
	--sr-shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.08);
	--sr-shadow-md: 0 12px 32px rgba(0, 0, 0, 0.12);
	--sr-shadow-lg: 0 20px 48px rgba(0, 0, 0, 0.16);
	--sr-shadow-xl: 0 30px 60px rgba(0, 0, 0, 0.2);
}

/* ===== GLOBAL STYLES ===== */
/* Animated Background */
@keyframes float {
	0%, 100% { transform: translateY(0px); }
	50% { transform: translateY(-15px); }
}

@keyframes pulse {
	0%, 100% { opacity: 1; }
	50% { opacity: 0.8; }
}

/* ===== NOTIFICATION STYLES ===== */
.sr-notification-wrapper {
	position: relative;
	display: flex;
	justify-content: flex-end;
	padding: 10px 30px 0 30px;
	max-width: 100%;
	margin: 0;
}

.sr-notification {
	padding: 16px 24px;
	margin-bottom: 10px;
	margin-left: auto;
	margin-right: 0;
	border-radius: 12px;
	display: flex;
	align-items: center;
	gap: 15px;
	animation: slideInRight 0.4s ease-out;
	border-left: 5px solid;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	font-size: 15px;
	font-weight: 500;
	backdrop-filter: blur(10px);
	max-width: 500px;
	width: 100%;
}

.sr-notification-content {
	flex-grow: 1;
}

@keyframes slideInRight {
	from {
		opacity: 0;
		transform: translateX(50px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

.sr-notification.sr-success {
	background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
	border-left-color: #28a745;
	color: #155724;
}

.sr-notification.sr-error {
	background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
	border-left-color: #dc3545;
	color: #721c24;
}

.sr-notification-icon {
	font-size: 22px;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.sr-notification.sr-success .sr-notification-icon {
	color: #28a745;
}

.sr-notification.sr-error .sr-notification-icon {
	color: #dc3545;
}

.sr-notification-close {
	margin-left: auto;
	background: none;
	border: none;
	font-size: 20px;
	cursor: pointer;
	padding: 0;
	transition: all 0.3s ease;
	flex-shrink: 0;
}

.sr-notification.sr-success .sr-notification-close {
	color: #28a745;
}

.sr-notification.sr-error .sr-notification-close {
	color: #dc3545;
}

.sr-notification-close:hover {
	transform: scale(1.2) rotate(90deg);
	opacity: 0.7;
}

/* ===== WHY JOIN US SECTION ===== */
.sr-why-join {
	padding: 80px 0;
	background: var(--sr-bg-white);
	position: relative;
	overflow: hidden;
}

.sr-why-join::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 100%;
	background: linear-gradient(180deg, #ffffff 0%, rgba(240, 244, 248, 0.5) 100%);
	pointer-events: none;
	z-index: 0;
}

.sr-section-title {
	text-align: center;
	margin-bottom: 40px;
	position: relative;
	z-index: 2;
	animation: fadeInUp 0.8s ease-out;
}

.sr-section-title h2 {
	font-size: 48px;
	font-weight: 700;
	color: var(--sr-text-dark);
	margin-bottom: 20px;
	letter-spacing: 1px;
	background: linear-gradient(135deg, #1b50b1 0%, #1e4182 50%, #1c3c78 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	position: relative;
	display: inline-block;
	width: 100%;
}

.sr-section-title h2::after {
	content: '';
	display: block;
	width: 80px;
	height: 5px;
	background: linear-gradient(135deg, #1b50b1 0%, #1e4182 50%, #1c3c78 100%);
	margin: 20px auto 0;
	border-radius: 3px;
	box-shadow: 0 4px 15px rgba(230, 160, 99, 0.3);
}

.sr-section-title p {
	font-size: 17px;
	color: var(--sr-text-light);
	margin-top: 10px;
	font-weight: 400;
	letter-spacing: 1px;
}

.sr-benefit-container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
	gap: 30px;
	position: relative;
	z-index: 2;
}

.sr-benefit-card {
	background: rgba(255, 255, 255, 0.95);
	padding: 30px 20px;
	border-radius: 20px;
	text-align: center;
	box-shadow: var(--sr-shadow-md);
	transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
	height: 100%;
	position: relative;
	overflow: hidden;
	border: 1px solid transparent;
	will-change: transform;
}

.sr-benefit-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 5px;
	background: linear-gradient(90deg, var(--sr-primary), var(--sr-primary-dark));
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}



.sr-benefit-card:hover {
	transform: translateY(-12px);
	box-shadow: var(--sr-shadow-xl);
	border-color: rgba(230, 160, 99, 0.4);
}

.sr-benefit-card:hover::before {
	transform: scaleX(1);
}

.sr-benefit-icon {
	width: 90px;
	height: 90px;
	background: linear-gradient(135deg, #1b50b1 0%, #1e4182 50%, #1c3c78 100%);
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 30px;
	font-size: 42px;
	color: white;
	transition: transform 0.5s ease, box-shadow 0.5s ease;
	box-shadow: 0 15px 35px rgba(230, 160, 99, 0.35);
	position: relative;
	will-change: transform;
}

.sr-benefit-card:hover .sr-benefit-icon {
	background: linear-gradient(135deg, var(--sr-primary-dark), var(--sr-primary));
	transform: scale(1.1) rotateZ(10deg);
	box-shadow: 0 20px 45px rgba(230, 160, 99, 0.45);
}

.sr-benefit-card h3 {
	font-size: 20px;
	font-weight: 400;
	letter-spacing: 1px;
	line-height: 35px;
	color: var(--sr-text-dark);
	margin-bottom: 10px;
	transition: all 0.4s ease;
}

.sr-benefit-card:hover h3 {
	color: var(--sr-primary-dark);
}

.sr-benefit-card p {
	font-size: 14px;
	color: var(--sr-text-light);
	line-height: 25px;
	margin: 0;
	letter-spacing: 1px;
	font-weight: 400;
}

/* ===== JOB OPENINGS SECTION ===== */
.sr-job-openings {
	padding: 80px 0px 80px;
	position: relative;
	overflow: hidden;
}

.sr-job-openings::before {
	content: '';
	position: absolute;
	bottom: 0;
	right: -10%;
	width: 700px;
	height: 700px;
	background: radial-gradient(circle, rgba(230, 160, 99, 0.08) 0%, transparent 70%);
	border-radius: 50%;
	z-index: 0;
}

.sr-job-container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 35px;
	position: relative;
	z-index: 2;
}

.sr-job-card {
	background: var(--sr-bg-white);
	padding: 35px;
	border-radius: 18px;
	box-shadow: var(--sr-shadow-md);
	transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
	height: 100%;
	display: flex;
	flex-direction: column;
	border: 2px solid transparent;
	position: relative;
	overflow: hidden;
	will-change: transform;
}

.sr-job-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 5px;
	height: 100%;
	background: linear-gradient(180deg, var(--sr-primary), var(--sr-primary-dark));
	transform: scaleY(0);
	transform-origin: top;
	transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
	z-index: 1;
}



.sr-job-card:hover {
	transform: translateY(-10px);
	box-shadow: var(--sr-shadow-xl);
	border-color: var(--sr-primary-light);
}

.sr-job-card:hover::before {
	transform: scaleY(1);
}

.sr-job-card > * {
	position: relative;
	z-index: 2;
}

.sr-job-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 25px;
	gap: 20px;
}

.sr-job-title {
	font-size: 20px;
	font-weight: 500;
	color: var(--sr-text-dark);
	margin: 0;
	line-height: 1.3;
}

.sr-job-type {
	background: linear-gradient(135deg, var(--sr-primary) 0%, var(--sr-primary-dark) 100%);
	color: white;
	padding: 10px 20px;
	border-radius: 50px;
	font-size: 12px;
	font-weight: 400;
	white-space: nowrap;
	box-shadow: 0 8px 20px rgba(230, 160, 99, 0.3);
	text-transform: capitalize;
	letter-spacing: 1px;
}

.sr-job-details {
	display: flex;
	gap: 25px;
	margin-bottom: 25px;
	font-size: 14px;
	color: var(--sr-text-light);
	flex-wrap: wrap;
}

.sr-job-location,
.sr-job-experience {
	display: flex;
	align-items: center;
	gap: 10px;
	letter-spacing: 1px;
	font-weight: 400;
}

.sr-job-location i,
.sr-job-experience i {
	color: var(--sr-primary);
	font-size: 18px;
	width: 24px;
	height: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.sr-job-desc {
	font-size: 14px;
	color: var(--sr-text-light);
	line-height: 1.9;
	margin-bottom: 20px;
	flex-grow: 1;
	font-weight: 400;
	letter-spacing: 1px;
}

.sr-job-skills {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	margin-bottom: 30px;
}

.sr-skill-tag {
	color: var(--sr-primary-dark);
	padding: 8px 18px;
	border-radius: 25px;
	font-size: 12px;
	letter-spacing: 1px;
	font-weight: 400;
	border: 1.5px solid var(--sr-primary-light);
	transition: all 0.4s ease;
	position: relative;
	overflow: hidden;
}

.sr-skill-tag::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
	transition: left 0.5s ease;
	z-index: 1;
}

.sr-skill-tag:hover {
	background: linear-gradient(135deg, rgba(230, 160, 99, 0.3), rgba(214, 143, 84, 0.2));
	border-color: var(--sr-primary);
	transform: translateY(-4px);
	box-shadow: 0 8px 20px rgba(230, 160, 99, 0.2);
}

.sr-skill-tag:hover::before {
	left: 100%;
}

.sr-apply-btn {
	display: inline-block;
	background: linear-gradient(135deg, var(--sr-primary), var(--sr-primary-dark));
	color: white;
	padding: 14px 35px;
	border-radius: 12px;
	text-decoration: none;
	font-weight: 400;
	transition: transform 0.4s ease, box-shadow 0.4s ease;
	text-align: center;
	box-shadow: 0 10px 28px rgba(230, 160, 99, 0.3);
	align-self: flex-start;
	font-size: 14px;
	text-transform: capitalize;
	letter-spacing: 1px;
	position: relative;
	overflow: hidden;
	will-change: transform;
}

.sr-apply-btn:hover {
	transform: translateY(-4px);
	box-shadow: 0 15px 40px rgba(230, 160, 99, 0.45);
}

.sr-apply-btn span {
	position: relative;
	z-index: 2;
}

/* ===== APPLICATION FORM SECTION ===== */
.sr-application-section {
	padding: 80px 0;
	background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f0f4f8 100%);
	position: relative;
	overflow: hidden;
}

.sr-application-section::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -20%;
	width: 800px;
	height: 800px;
	background: radial-gradient(circle, rgba(230, 160, 99, 0.12) 0%, transparent 70%);
	border-radius: 50%;
	z-index: 0;
	animation: float 10s ease-in-out infinite;
}

.sr-application-section::after {
	content: '';
	position: absolute;
	bottom: -40%;
	left: -15%;
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, rgba(230, 160, 99, 0.08) 0%, transparent 70%);
	border-radius: 50%;
	z-index: 0;
	animation: float 12s ease-in-out infinite reverse;
}

.sr-form-wrapper {
	background: rgba(255, 255, 255, 0.95);
	padding: 80px;
	border-radius: 25px;
	box-shadow: var(--sr-shadow-xl);
	position: relative;
	z-index: 2;
	border: 2px solid var(--sr-primary-light);
	animation: fadeInUp 0.8s ease-out;
}

.sr-form-wrapper::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 5px;
	border-radius: 25px 25px 0 0;
}

.sr-form-title {
	font-size: 44px;
	font-weight: 700;
	color: var(--sr-text-dark);
	letter-spacing: 1px;
	text-align: center;
	margin-bottom: 15px;
	background: linear-gradient(135deg, #0f0f0f 0%, var(--sr-primary) 50%, #1e4182 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.sr-form-subtitle {
	text-align: center;
	color: var(--sr-text-light);
	font-size: 16px;
	margin-bottom: 50px;
	font-weight: 400;
	letter-spacing: 1px;
}

.sr-application-form {
	display: flex;
	flex-direction: column;
}

.sr-form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 35px;
	margin-bottom: 0;
}

.sr-form-row.full {
	grid-template-columns: 1fr;
}

.sr-form-group {
	display: flex;
	flex-direction: column;
	margin-bottom: 30px;
}

.sr-form-group label {
	font-size: 15px;
	font-weight: 400;
	color: var(--sr-text-dark);
	margin-bottom: 12px;
	letter-spacing: 1px;
	text-transform: capitalize;
}

.sr-form-group input,
.sr-form-group select,
.sr-form-group textarea {
	padding: 16px 22px;
	border: 1px solid rgb(30 65 130);
	border-radius: 12px;
	font-size: 15px;
	font-family: inherit;
	letter-spacing: 1px;
	transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
	background: #ffffff;
	color: var(--sr-text-dark);
}

.sr-form-group input::placeholder,
.sr-form-group select::placeholder,
.sr-form-group textarea::placeholder {
	color: var(--sr-text-muted);
}

.sr-form-group input:focus,
.sr-form-group select:focus,
.sr-form-group textarea:focus {
	outline: none;
	border-color: var(--sr-primary);
	box-shadow: 0 0 0 4px rgba(230, 160, 99, 0.1);
	background: #ffffff;
}

.sr-form-group textarea {
	resize: vertical;
	min-height: 140px;
	font-family: "Poppins", sans-serif;
}

.sr-form-group.sr-checkbox {
	flex-direction: row;
	align-items: flex-start;
	margin: 35px 0;
}

.sr-form-group.sr-checkbox input {
	width: 24px;
	height: 24px;
	margin-right: 14px;
	margin-top: 2px;
	cursor: pointer;
	accent-color: var(--sr-primary);
	flex-shrink: 0;
}

.sr-form-group.sr-checkbox label {
	margin-bottom: 0;
	cursor: pointer;
	font-weight: 400;
	color: var(--sr-text-light);
	text-transform: none;
	font-size: 14px;
	letter-spacing: 1px;
}

/* Error Message Styling */
.sr-error-msg {
	display: none;
	color: #e74c3c;
	font-size: 13px;
	letter-spacing: 1px;
	font-weight: 400;
	margin-top: 8px;
	padding: 0 8px;
	animation: slideDown 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes slideDown {
	from {
		opacity: 0;
		transform: translateY(-12px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.sr-input-error {
	border-color: #e74c3c !important;
	background-color: rgba(231, 76, 60, 0.08) !important;
	box-shadow: 0 0 0 5px rgba(231, 76, 60, 0.08) !important;
}

.sr-form-group.sr-checkbox .sr-error-msg {
	margin-top: 10px;
	margin-left: 38px;
}

/* ===== CAPTCHA SECTION ===== */
.sr-captcha-section {
	background: linear-gradient(135deg, rgba(230, 160, 99, 0.08), rgba(214, 143, 84, 0.05));
	padding: 40px;
	border-radius: 16px;
	margin-bottom: 40px;
	border: 2px dashed rgba(230, 160, 99, 0.3);
	position: relative;
	overflow: hidden;
}

.sr-captcha-section::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -50%;
	width: 300px;
	height: 300px;
	background: radial-gradient(circle, rgba(230, 160, 99, 0.1) 0%, transparent 70%);
	border-radius: 50%;
	pointer-events: none;
}

.sr-captcha-box {
	position: relative;
	margin-bottom: 30px;
	background: rgba(255, 255, 255, 0.95);
	padding: 20px;
	border-radius: 14px;
	display: inline-block;
	width: 100%;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
	z-index: 1;
	border: 1px solid var(--sr-primary-light);
}

.sr-captcha-display {
	display: flex;
	justify-content: center;
	align-items: center;
	background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
	border-radius: 10px;
	min-height: 100px;
	position: relative;
}

.sr-captcha-display canvas {
	max-width: 100%;
	height: auto;
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.sr-captcha-refresh {
	position: absolute;
	top: 14px;
	right: 14px;
	background: linear-gradient(135deg, var(--sr-primary), var(--sr-primary-dark));
	color: white;
	border: none;
	width: 45px;
	height: 45px;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	transition: transform 0.4s ease, box-shadow 0.4s ease;
	z-index: 10;
	box-shadow: 0 8px 24px rgba(230, 160, 99, 0.35);
	will-change: transform;
}

.sr-captcha-refresh:hover {
	background: linear-gradient(135deg, var(--sr-primary-dark), var(--sr-primary));
	transform: rotate(90deg) scale(1.1);
	box-shadow: 0 12px 32px rgba(230, 160, 99, 0.45);
}

.sr-captcha-refresh:active {
	transform: rotate(180deg) scale(0.92);
}

.sr-captcha-refresh i {
	pointer-events: none;
}

.sr-submit-btn {
	padding: 18px 60px;
	background: linear-gradient(135deg, var(--sr-primary), var(--sr-primary-dark));
	color: white;
	border: none;
	border-radius: 14px;
	font-size: 16px;
	font-weight: 400;
	cursor: pointer;
	transition: transform 0.4s ease, box-shadow 0.4s ease;
	align-self: center;
	min-width: 250px;
	box-shadow: 0 12px 32px rgba(230, 160, 99, 0.35);
	text-transform: capitalize;
	letter-spacing: 1.5px;
	position: relative;
	overflow: hidden;
	will-change: transform;
	letter-spacing: 1px;
}

.sr-submit-btn:hover {
	background: linear-gradient(135deg, var(--sr-primary-dark), var(--sr-primary));
	transform: translateY(-4px);
	box-shadow: 0 18px 45px rgba(230, 160, 99, 0.4);
}

.sr-submit-btn:active {
	transform: translateY(-1px);
	box-shadow: 0 10px 28px rgba(230, 160, 99, 0.3);
}

.sr-submit-btn span {
	position: relative;
	z-index: 2;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
	.sr-form-wrapper {
		padding: 60px 50px;
	}

	.sr-intro-title,
	.sr-section-title h2 {
		font-size: 40px;
	}

	.sr-career-intro {
		padding: 100px 0 60px;
		min-height: auto;
	}

	.sr-form-row {
		gap: 25px;
	}
}

@media (max-width: 768px) {
	.sr-career-intro {
		padding: 70px 0 50px;
	}

	.sr-intro-title {
		font-size: 36px;
		margin-bottom: 16px;
	}

	.sr-intro-desc {
		font-size: 16px;
		line-height: 1.8;
	}

	.sr-section-title h2 {
		font-size: 32px;
	}

	.sr-section-title {
		margin-bottom: 60px;
	}

	.sr-form-row {
		grid-template-columns: 1fr;
		gap: 20px;
		margin-bottom: 20px;
	}

	.sr-form-wrapper {
		padding: 50px 40px;
	}

	.sr-benefit-card {
		padding: 35px 25px;
	}

	.sr-benefit-icon {
		width: 75px;
		height: 75px;
		font-size: 36px;
		margin-bottom: 20px;
	}

	.sr-job-header {
		flex-direction: column;
		gap: 12px;
	}

	.sr-job-type {
		align-self: flex-start;
	}

	.sr-captcha-section {
		padding: 30px;
	}

	.sr-submit-btn {
		width: 100%;
		min-width: 100%;
	}

	.sr-why-join,
	.sr-job-openings,
	.sr-application-section {
		padding: 100px 0;
	}
}

@media (max-width: 480px) {
	.sr-career-intro {
		padding: 60px 0 40px;
		min-height: auto;
	}

	.sr-intro-title {
		font-size: 28px;
		margin-bottom: 14px;
		letter-spacing: -0.5px;
	}

	.sr-intro-desc {
		font-size: 14px;
		line-height: 1.7;
		margin-bottom: 20px;
	}

	.sr-section-title h2 {
		font-size: 24px;
	}

	.sr-section-title {
		margin-bottom: 0px;
	}

	.sr-section-title h2::after {
		width: 50px;
		height: 4px;
		margin-top: 12px;
	}

	.sr-section-title p {
		font-size: 14px;
		margin-top: 12px;
	}

	.sr-benefit-container {
		gap: 20px;
	}

	.sr-benefit-card {
		padding: 30px 20px;
	}

	.sr-benefit-icon {
		width: 65px;
		height: 65px;
		font-size: 30px;
		margin-bottom: 15px;
		box-shadow: 0 10px 25px rgba(230, 160, 99, 0.25);
	}

	.sr-benefit-card h3 {
		font-size: 18px;
		margin-bottom: 10px;
	}

	.sr-benefit-card p {
		font-size: 13px;
		line-height: 1.7;
	}

	.sr-why-join,
	.sr-job-openings {
		padding: 50px 0;
	}

	.sr-job-container {
		gap: 20px;
	}

	.sr-job-card {
		padding: 30px;
	}

	.sr-job-title {
		font-size: 20px;
	}

	.sr-job-details {
		gap: 15px;
		margin-bottom: 15px;
		font-size: 13px;
	}

	.sr-job-desc {
		font-size: 13px;
		margin-bottom: 15px;
	}

	.sr-job-skills {
		gap: 8px;
		margin-bottom: 20px;
	}

	.sr-skill-tag {
		padding: 6px 14px;
		font-size: 11px;
	}

	.sr-application-section {
		padding: 70px 0;
	}

	.sr-form-wrapper {
		padding: 35px 25px;
	}

	.sr-form-title {
		font-size: 28px;
		margin-bottom: 12px;
	}

	.sr-form-subtitle {
		font-size: 14px;
		margin-bottom: 30px;
	}

	.sr-form-group input,
	.sr-form-group select,
	.sr-form-group textarea {
		padding: 14px 16px;
		font-size: 14px;
	}

	.sr-form-group label {
		font-size: 13px;
		margin-bottom: 8px;
		letter-spacing: 0;
	}

	.sr-error-msg {
		font-size: 12px;
		margin-top: 6px;
	}

	.sr-captcha-section {
		padding: 25px;
		margin: 30px 0;
	}

	.sr-captcha-box {
		padding: 15px;
		margin-bottom: 20px;
	}

	.sr-captcha-display {
		min-height: 80px;
	}

	.sr-captcha-refresh {
		width: 40px;
		height: 40px;
		font-size: 18px;
		top: 12px;
		right: 12px;
	}

	.sr-submit-btn {
		padding: 16px 40px;
		font-size: 14px;
		min-width: auto;
		width: 100%;
		letter-spacing: 1px;
	}

	.sr-form-group.sr-checkbox {
		margin: 25px 0;
	}

	.sr-form-group.sr-checkbox input {
		width: 22px;
		height: 22px;
		margin-right: 12px;
	}

	.sr-form-group.sr-checkbox label {
		font-size: 13px;
	}

	.sr-form-group textarea {
		min-height: 120px;
	}
}

@media (max-width: 360px) {
	.sr-intro-title,
	.sr-section-title h2 {
		font-size: 22px;
	}

	.sr-form-title {
		font-size: 24px;
	}

	.sr-benefit-icon {
		width: 55px;
		height: 55px;
		font-size: 24px;
	}

	.sr-section-title h2::after {
		width: 40px;
	}

	.sr-section-title p {
		font-size: 13px;
	}
}
