/* Register page: Rich identity choice */

.register-page{
	display:flex;
	flex-direction:column;
	gap:18px;
	padding:6px 0 2px;
}

.register-hero{
	display:flex;
	align-items:center;
	gap:14px;
	padding:6px 8px 12px;
	border-bottom:1px solid rgba(255,255,255,0.22);
}
.register-hero__icon{
	width:52px;
	height:52px;
	border-radius:18px;
	display:flex;
	align-items:center;
	justify-content:center;
	background:linear-gradient(135deg,#53b4db 0%,#1c5fb5 100%);
	color:#fff;
	box-shadow:0 18px 50px rgba(83,180,219,0.30);
	flex:0 0 auto;
}
.register-hero__icon i{
	font-size:18px;
}
.register-hero__title{
	font-size:20px;
	font-weight:900;
	color:#0f172a;
	letter-spacing:-0.02em;
	line-height:1.25;
}
.register-hero__subtitle{
	margin-top:4px;
	font-size:13px;
	font-weight:800;
	color:rgba(15,23,42,0.65);
}

.register-steps{
	display:flex;
	gap:12px;
	flex-wrap:wrap;
}
.register-step{
	flex:1;
	min-width:210px;
	display:flex;
	align-items:center;
	gap:10px;
	padding:10px 14px;
	border-radius:16px;
	background:rgba(255,255,255,0.08);
	border:1px solid rgba(255,255,255,0.18);
}
.register-step__num{
	width:28px;
	height:28px;
	border-radius:10px;
	display:flex;
	align-items:center;
	justify-content:center;
	font-weight:1000;
	font-size:13px;
	color:#0d4299;
	background:rgba(83,180,219,0.18);
}
.register-step__text{
	font-size:13px;
	font-weight:900;
	color:rgba(15,23,42,0.72);
	white-space:nowrap;
}
.register-step--current{
	background:linear-gradient(135deg, rgba(83,180,219,0.22) 0%, rgba(28,95,181,0.14) 55%, rgba(124,58,237,0.12) 100%);
	border:1px solid rgba(83,180,219,0.35);
}
.register-step--current .register-step__num{
	color:#fff;
	background:linear-gradient(135deg,#53b4db 0%,#1c5fb5 100%);
}
.register-step--current .register-step__text{
	color:rgba(15,23,42,0.85);
}

.register-choices{
	display:grid;
	grid-template-columns:1fr 1fr;
	gap:14px;
}

.register-card{
	position:relative;
	display:flex;
	flex-direction:column;
	gap:10px;
	padding:18px;
	border-radius:20px;
	background:rgba(255,255,255,0.10);
	border:1px solid rgba(255,255,255,0.20);
	box-shadow:0 20px 60px rgba(15,82,187,0.10);
	text-decoration:none;
	transition:transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
	overflow:hidden;
}
.register-card::before{
	content:"";
	position:absolute;
	inset:-2px;
	background:
		radial-gradient(400px 160px at 15% 20%, rgba(83,180,219,0.35), transparent 58%),
		radial-gradient(360px 160px at 90% 30%, rgba(124,58,237,0.22), transparent 60%);
	opacity:0.55;
	pointer-events:none;
}
.register-card > *{
	position:relative;
}

.register-card__icon{
	width:56px;
	height:56px;
	border-radius:18px;
	display:flex;
	align-items:center;
	justify-content:center;
	background:rgba(83,180,219,0.14);
	color:#0d4299;
	box-shadow:0 18px 50px rgba(83,180,219,0.18);
}
.register-card__icon i{
	font-size:18px;
}
.register-card__title{
	font-size:18px;
	font-weight:1000;
	color:#0f172a;
}
.register-card__desc{
	font-size:13px;
	font-weight:800;
	color:rgba(15,23,42,0.66);
	line-height:1.5;
}
.register-card__cta{
	margin-top:auto;
	font-size:14px;
	font-weight:1000;
	color:#0d4299;
	display:flex;
	align-items:center;
	gap:10px;
}
.register-card__cta i{
	font-size:14px;
	transition:transform 0.25s ease;
}
.register-card:hover{
	transform:translateY(-4px);
	border-color:rgba(83,180,219,0.50);
	box-shadow:0 26px 80px rgba(15,82,187,0.18);
	background:rgba(255,255,255,0.14);
}
.register-card:hover .register-card__cta i{
	transform:translateX(3px);
}

.register-card--alt .register-card__icon{
	background:rgba(124,58,237,0.14);
	color:#5b21b6;
}

.register-footer{
	text-align:center;
	font-size:16px;
	font-weight:900;
	color:rgba(15,23,42,0.72);
	padding-top:6px;
}
.register-footer .godl{
	font-weight:1000 !important;
}

@media (max-width: 900px){
	.register-step{min-width:160px}
	.register-choices{grid-template-columns:1fr}
}

