.rbr-registration-wrapper {
	max-width: 100%;
	padding: 28px;
	background: #f6f7f9;
	border: 1px solid #b8dcf7;
	border-radius: 20px;
	box-sizing: border-box;
}

.rbr-form-field {
	margin-bottom: 22px;
}

.rbr-form-field label {
	display: block;
	margin-bottom: 7px;
	font-size: 15px;
	font-weight: 600;
	color: #111;
}

.rbr-form-field label span {
	color: #111;
}

.rbr-form-field input[type="text"],
.rbr-form-field input[type="email"],
.rbr-form-field select {
	width: 100%;
	height: 38px;
	padding: 0 13px;
	border: 1px solid #e0e0e0;
	border-radius: 4px;
	background: #fff;
	box-sizing: border-box;
	font-size: 13px;
	color: #333;
}

.rbr-form-field input::placeholder {
	color: #aaa;
}

.rbr-form-field select {
	cursor: pointer;
}

.rbr-privacy-field {
	margin: 4px 0 20px;
}

.rbr-privacy-label {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	font-size: 13px;
	line-height: 1.4;
	color: #222;
	cursor: pointer;
}

.rbr-privacy-label input[type="checkbox"] {
	width: 20px;
	height: 20px;
	margin: 0;
	flex: 0 0 auto;
	cursor: pointer;
}

.rbr-privacy-label a {
	color: inherit;
	text-decoration: none;
}

			label.rbr-privacy-label a {
    color: #e6aa41 !important;
}

.rbr-privacy-label a:hover {
	text-decoration: underline;
}

.rbr-submit-button {
	width: 100%;
	height: 38px;
	padding: 0 20px;
	border: 0;
	border-radius: 5px;
	background: #e9aa38;
	color: #fff;
	font-size: 15px;
	font-weight: 500;
	cursor: pointer;
}

.rbr-submit-button:hover {
	opacity: 0.9;
}

.rbr-submit-button:disabled {
	cursor: not-allowed;
	opacity: 0.7;
}



/* ========================================
   Form Submit Area
======================================== */

.rbr-form-submit-area {
	width: 100%;
	margin-top: 20px;
}


/* ========================================
   Form Message
======================================== */

.rbr-form-message {
	display: none;
	width: 100%;
    box-sizing: border-box;
    border-radius: 8px;
 
	font-size: 14px;
	font-weight: 500;
	line-height: 1.5;

	align-items: center;
	gap: 10px;

	animation: rbrMessageSlideIn 0.3s ease;
}


/* ========================================
   SUCCESS MESSAGE
======================================== */

.rbr-form-message.success {
	display: flex !important;

	background: #ecfdf3;
	border: 1px solid #a7e8c2;
	color: #137a3d;
	padding: 13px 16px !important;
	margin-bottom: 12px;

}


/* Success Icon */

.rbr-form-message.success::before {
	content: "✓";

	display: flex;
	align-items: center;
	justify-content: center;

	width: 24px;
	height: 24px;
	min-width: 24px;

	border-radius: 50%;

	background: #198754;
	color: #fff;

	font-size: 14px;
	font-weight: 700;
	line-height: 1;
}


/* ========================================
   ERROR MESSAGE
======================================== */

.rbr-form-message.error {
	display: flex !important;

	background: #fff5f5;
	border: 1px solid #f1b8b8;
	color: #b42318;
	padding: 13px 16px !important;
	margin-bottom: 12px;

}


/* Error Icon */

.rbr-form-message.error::before {
	content: "!";

	display: flex;
	align-items: center;
	justify-content: center;

	width: 24px;
	height: 24px;
	min-width: 24px;

	border-radius: 50%;

	background: #dc3545;
	color: #fff;

	font-size: 14px;
	font-weight: 700;
	line-height: 1;
}


/* ========================================
   SUBMIT BUTTON
======================================== */

.rbr-submit-button {
	position: relative;

	display: flex;
	align-items: center;
	justify-content: center;

	width: 100%;
	height: 48px;

	padding: 0 20px;

	border: 0;
	border-radius: 6px;

	background: #e9aa38;
	color: #fff;

	font-size: 15px;
	font-weight: 600;

	cursor: pointer;

	box-sizing: border-box;

	transition:
		background-color 0.2s ease,
		transform 0.2s ease,
		box-shadow 0.2s ease;
}


.rbr-submit-button:hover {
	background: #d99925;

	transform: translateY(-1px);

	box-shadow:
		0 5px 15px rgba(0, 0, 0, 0.12);
}


.rbr-submit-button:active {
	transform: translateY(0);
}


.rbr-submit-button:disabled {
	cursor: not-allowed;
	opacity: 0.7;

	transform: none;
	box-shadow: none;
}


/* ========================================
   LOADING
======================================== */

.rbr-submit-loading {
	align-items: center;
	justify-content: center;
	gap: 8px;
}


/* Loading Spinner */

.rbr-submit-loading::before {
	content: "";

	display: inline-block;

	width: 15px;
	height: 15px;

	border: 2px solid rgba(255, 255, 255, 0.4);
	border-top-color: #fff;

	border-radius: 50%;

	animation: rbrButtonSpin 0.7s linear infinite;
}


/* ========================================
   ANIMATIONS
======================================== */

@keyframes rbrMessageSlideIn {

	from {
		opacity: 0;
		transform: translateY(-6px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}

}


@keyframes rbrButtonSpin {

	to {
		transform: rotate(360deg);
	}

}


/* ========================================
   MOBILE
======================================== */

@media (max-width: 767px) {

	.rbr-form-submit-area {
		margin-top: 18px;
	}

	.rbr-form-message {
		padding: 12px 14px;
		font-size: 13px;
	}

	.rbr-submit-button {
		height: 46px;
		font-size: 14px;
	}

}