/* Additional styles for registration form */
.register-form {
	background: #2d3748;
	border-radius: 12px;
	padding: 2rem;
	border: none;
	max-width: 420px;
	margin: 0 auto;
	text-align: left;

}

.register-link a {
	color: white;
}

.register-link {
	color: white;
	text-decoration: none;
}

.form-group option {
	color: black;
}

.form-group {
	margin-bottom: 1.2rem;
}

.form-group label {
	display: block;
	color: #e2e8f0;
	font-weight: 500;
	margin-bottom: 0.5rem;
	font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
	width: 100%;
	padding: 0.75rem 1rem;
	border: 1px solid #4a5568;
	border-radius: 6px;
	background: #ffffff;
	color: #2d3748;
	font-size: 0.9rem;
	transition: all 0.3s ease;
	box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	outline: none;
	border-color: #ffd700;

	background: #ffffff;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
	color: #a0aec0;
}

/* Password visibility toggle styles */
.password-input-container {
	position: relative;
}

.password-input-container input {
	padding-right: 40px !important;
	/* Make space for the toggle button */
}

.password-toggle {
	position: absolute;
	right: 12px;
	top: 50%;
	transform: translateY(-50%);
	background: none;
	border: none;
	cursor: pointer;
	color: #6b7280;
	font-size: 1.1rem;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	transition: color 0.3s ease;
	z-index: 10;
}

.password-toggle:hover {
	color: #ffd700;
}

.password-toggle:focus {
	outline: none;
	color: #ffd700;
}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
}

.btn-register {
	width: 100%;
	background: #daa520;
	color: #1a202c;
	border: none;
	padding: 0.9rem;
	border-radius: 6px;
	font-size: 1rem;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.3s ease;
	margin-top: 1rem;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.btn-register:hover {
	background: #B8860B;
	transform: translateY(-1px);
}

.payment-info {
	font-size: 0.75rem;
	color: #a0aec0;
	text-align: center;
	margin: 1rem 0;
	line-height: 1.4;
}

.form-title {
	text-align: center;
	color: #fff;
	font-size: 1.25rem;
	margin-bottom: 0.5rem;
	font-weight: 600;
	line-height: 1.3;
}

.form-subtitle {
	text-align: center;
	color: #a0aec0;
	font-size: 0.85rem;
	margin-bottom: 2rem;
	line-height: 1.4;
}

.price-display {
	text-align: left;
	margin: 1.5rem 0;
}

.price-amount {
	color: #fff;
	font-size: 1.5rem;
	font-weight: 700;
	display: block;
}

.price-period {
	color: #a0aec0;
	font-size: 0.8rem;
	margin-top: 0.3rem;
}

.scout-icon {
	text-align: center;
	margin-bottom: 2rem;
}

.scout-icon i {
	font-size: 4rem;
	color: #DAA520;
}

.checkbox-group {
	display: flex;
	align-items: flex-start;
	gap: 0.5rem;
	margin: 1rem 0;
}

.checkbox-group input[type="checkbox"] {
	width: auto;
	margin: 0;
	margin-top: 0.1rem;
	flex-shrink: 0;
	accent-color: #ffd700;
}

.checkbox-group label {
	margin: 0;
	font-size: 0.8rem;
	color: #a0aec0;
	line-height: 1.3;
}

/* Error messages */
.error-messages {
	background: rgba(220, 53, 69, 0.1);
	border: 1px solid rgba(220, 53, 69, 0.3);
	border-radius: 10px;
	padding: 1rem;
	margin-bottom: 2rem;
}

.error-messages ul {
	margin: 0;
	padding-left: 1.2rem;
	color: #ff6b6b;
}

.error-messages li {
	margin-bottom: 0.5rem;
}

.success-message {
	background: rgba(40, 167, 69, 0.1);
	border: 1px solid rgba(40, 167, 69, 0.3);
	border-radius: 10px;
	padding: 1rem;
	margin-bottom: 2rem;
	color: #28a745;
	text-align: center;
}

@media (max-width: 768px) {

	.form-row {
		grid-template-columns: 1fr;
		gap: 0;
	}

	.form-title {
		font-size: 1.1rem;
	}

	.price-amount {
		font-size: 1.3rem;
	}

	.scout-icon i {
		font-size: 3rem;
	}
}

.price-offer {
	color: white;
}