/* Register Page Styles */
.register-page {
	min-height: calc(100vh - 300px);
	background: linear-gradient(135deg, #fdfbf6 0%, #f5f0df 100%);
	padding: 60px 20px;
	font-family: 'Noto Sans', sans-serif;
}

.register-container {
	max-width: 580px;
	margin: 0 auto;
}

.register-card {
	background: white;
	border-radius: 20px;
	box-shadow: 0 10px 40px rgba(138, 122, 63, 0.1);
	overflow: hidden;
	border: 2px solid #e5d9c3;
}

.register-header {
	text-align: center;
	padding: 40px 30px 30px;
	background: linear-gradient(135deg, #fdfbf6 0%, #faf6ed 100%);
	border-bottom: 2px solid #e5d9c3;
}

.register-logo {
	width: 140px;
	height: auto;
	margin: 0 auto 20px;
	display: block;
}

.register-title {
	color: #1f2937;
	font-size: 28px;
	font-weight: 700;
	margin: 0 0 8px;
}

.register-subtitle {
	color: #6b7280;
	font-size: 15px;
	margin: 0;
}

.register-form {
	padding: 40px 30px;
}

.form-row-custom {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	margin-bottom: 20px;
}

.form-group {
	margin-bottom: 20px;
}

.form-label {
	display: block;
	color: #374151;
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 8px;
}

.form-label i {
	color: #9ca3af;
	font-size: 13px;
	cursor: help;
}

.form-input {
	width: 100%;
	padding: 14px 16px;
	border: 2px solid #e5d9c3;
	border-radius: 12px;
	font-size: 15px;
	color: #1f2937;
	transition: all 0.3s ease;
	background: white;
}

.form-input:focus {
	outline: none;
	border-color: #8a7a3f;
	box-shadow: 0 0 0 4px rgba(138, 122, 63, 0.1);
}

.form-input.error {
	border-color: #ef4444;
}

.form-input.success {
	border-color: #10b981;
}

.form-input::placeholder {
	color: #9ca3af;
}

.error-message {
	color: #ef4444;
	font-size: 13px;
	margin-top: 6px;
	display: flex;
	align-items: center;
	gap: 4px;
}

.alert-success {
	background: #f0fdf4;
	border: 2px solid #86efac;
	border-radius: 12px;
	padding: 16px;
	margin-bottom: 20px;
	color: #166534;
	font-size: 14px;
	display: flex;
	align-items: flex-start;
	gap: 10px;
}

.alert-icon-success {
	color: #10b981;
	font-size: 20px;
	flex-shrink: 0;
}

.checkbox-group {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin-bottom: 24px;
}

.checkbox-input {
	width: 18px;
	height: 18px;
	cursor: pointer;
	accent-color: #8a7a3f;
	margin-top: 2px;
	flex-shrink: 0;
}

.checkbox-label {
	color: #374151;
	font-size: 14px;
	cursor: pointer;
	user-select: none;
	line-height: 1.5;
}

.checkbox-label a {
	color: #8a7a3f;
	text-decoration: none;
	font-weight: 600;
	transition: color 0.3s ease;
}

.checkbox-label a:hover {
	color: #6f6134;
	text-decoration: underline;
}

.submit-button {
	width: 100%;
	padding: 14px 24px;
	background: linear-gradient(135deg, #8a7a3f 0%, #6f6134 100%);
	color: white;
	border: none;
	border-radius: 12px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 4px 12px rgba(138, 122, 63, 0.2);
}

.submit-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(138, 122, 63, 0.3);
}

.submit-button:active {
	transform: translateY(0);
}

.register-footer {
	text-align: center;
	padding: 24px 30px 30px;
	background: #fdfbf6;
	border-top: 1px solid #e5d9c3;
}

.login-cta {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 16px;
	background: #faf6ed;
	border-radius: 12px;
	border: 2px dashed #e5d9c3;
}

.login-cta-text {
	color: #6b7280;
	font-size: 14px;
	margin: 0;
}

.login-cta-link {
	color: #8a7a3f;
	text-decoration: none;
	font-weight: 600;
	transition: color 0.3s ease;
}

.login-cta-link:hover {
	color: #6f6134;
}

/* Mobile Responsive */
@media (max-width: 576px) {
	.register-page {
		padding: 30px 15px;
		min-height: calc(100vh - 250px);
	}

	.register-header {
		padding: 30px 20px 20px;
	}

	.register-logo {
		width: 120px;
	}

	.register-title {
		font-size: 24px;
	}

	.register-subtitle {
		font-size: 14px;
	}

	.register-form {
		padding: 30px 20px;
	}

	.form-row-custom {
		grid-template-columns: 1fr;
		gap: 0;
		margin-bottom: 0;
	}

	.form-input {
		padding: 12px 14px;
		font-size: 14px;
	}

	.submit-button {
		padding: 12px 20px;
		font-size: 15px;
	}

	.register-footer {
		padding: 20px;
	}
}