/* Register Contact Page — Frontend forms */

.rcp-card {
	max-width: 460px;
	width: 100%;
	margin: 24px auto;
	background: #fff;
	border-radius: 16px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
	position: relative;
	overflow: hidden;
	padding: 36px 32px 28px;
	box-sizing: border-box;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.rcp-card:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 5px;
	background: linear-gradient(90deg, #e0463f, #8b6ec8, #3b8fe0);
}

.rcp-icon-wrap {
	width: 76px;
	height: 76px;
	border-radius: 50%;
	background: linear-gradient(160deg, #f0564d, #d8362d);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 6px auto 22px;
	box-shadow: 0 8px 18px rgba(216, 54, 45, 0.35);
}

.rcp-icon-wrap svg {
	width: 32px;
	height: 32px;
	fill: #fff;
}

.rcp-title {
	font-size: 26px;
	font-weight: 700;
	color: #20232a;
	text-align: left;
	margin: 0 0 10px;
}

.rcp-underline {
	width: 44px;
	height: 4px;
	background: #e0463f;
	border-radius: 2px;
	margin: 0 0 18px;
}

.rcp-subtitle {
	color: #6b7280;
	font-size: 14.5px;
	text-align: left;
	margin: 0 0 24px;
	line-height: 1.5;
}

.rcp-field {
	margin-bottom: 18px;
}

.rcp-label {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	font-weight: 600;
	color: #374151;
	margin-bottom: 8px;
}

.rcp-label svg {
	width: 15px;
	height: 15px;
	fill: #9aa1ac;
}

.rcp-input {
	width: 100%;
	box-sizing: border-box;
	background: #eaf0fb;
	border: 1px solid transparent;
	border-radius: 10px;
	padding: 13px 14px;
	font-size: 15px;
	color: #20232a;
	outline: none;
	transition: border-color 0.15s, background 0.15s;
}

.rcp-input:focus {
	border-color: #8fb2ef;
	background: #fff;
}

.rcp-name-row {
	display: flex;
	gap: 14px;
}

.rcp-name-row .rcp-field {
	flex: 1;
}

.rcp-row-between {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 22px;
	font-size: 14px;
}

.rcp-remember {
	display: flex;
	align-items: center;
	gap: 8px;
	color: #374151;
}

.rcp-remember input {
	width: 16px;
	height: 16px;
	accent-color: #3b82f6;
}

.rcp-link {
	color: #3b6fe0;
	text-decoration: none;
	font-weight: 600;
}

.rcp-link:hover {
	text-decoration: underline;
}

.rcp-submit {
	width: 100%;
	border: 0;
	cursor: pointer;
	padding: 15px;
	border-radius: 10px;
	font-size: 16px;
	font-weight: 700;
	color: #fff;
	background: linear-gradient(180deg, #ef5a4f, #c22e24);
	box-shadow: 0 6px 16px rgba(194, 46, 36, 0.35);
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	transition: transform 0.1s ease;
}

.rcp-submit:hover {
	transform: translateY(-1px);
}

.rcp-submit svg {
	width: 16px;
	height: 16px;
	fill: #fff;
}

.rcp-footer {
	text-align: center;
	font-size: 14px;
	color: #6b7280;
	margin-top: 20px;
	padding-top: 18px;
	border-top: 1px solid #ececec;
}

.rcp-msg {
	padding: 12px 14px;
	border-radius: 8px;
	font-size: 14px;
	margin-bottom: 18px;
}

.rcp-msg-error {
	background: #fdecea;
	color: #b3261e;
	border: 1px solid #f6c6c2;
}

.rcp-msg-success {
	background: #e8f7ee;
	color: #1e7a3a;
	border: 1px solid #bfe8cd;
}

@media (max-width: 480px) {
	.rcp-card {
		padding: 26px 20px 22px;
		border-radius: 12px;
		margin: 12px auto;
	}

	.rcp-name-row {
		flex-direction: column;
		gap: 0;
	}

	.rcp-title {
		font-size: 22px;
	}
}
