.ricsian-auth-page {
	min-height: 60vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 40px 20px;
	background: #f8fafc;
}

.ricsian-auth-card {
	width: 100%;
	max-width: 460px;
	background: #ffffff;
	border: 1px solid #e5e7eb;
	border-radius: 18px;
	padding: 32px;
	box-shadow: 0 20px 60px rgba(15, 23, 42, 0.08);
}

.ricsian-auth-header h2 {
	margin: 0 0 8px;
	font-size: 28px;
	line-height: 1.2;
	color: #0f172a;
}

.ricsian-auth-header p {
	margin: 0 0 24px;
	color: #64748b;
}

.ricsian-auth-card label {
	display: block;
	margin-bottom: 8px;
	font-weight: 600;
	color: #334155;
}

.ricsian-auth-card input[type="text"],
.ricsian-auth-card input[type="password"] {
	width: 100%;
	border: 1px solid #cbd5e1;
	border-radius: 10px;
	padding: 12px 14px;
	font-size: 15px;
	box-sizing: border-box;
}

.ricsian-auth-card input[type="text"]:focus,
.ricsian-auth-card input[type="password"]:focus {
	outline: none;
	border-color: #2563eb;
	box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.ricsian-auth-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	font-size: 14px;
}

.ricsian-auth-remember {
	display: inline-flex !important;
	align-items: center;
	gap: 8px;
	margin-bottom: 0 !important;
	font-weight: 400 !important;
}

.ricsian-auth-button {
	width: 100%;
	background: #155dfc;
	color: #ffffff;
	border: 0;
	border-radius: 10px;
	padding: 13px 18px;
	font-size: 16px;
	font-weight: 700;
	cursor: pointer;
}

.ricsian-auth-button:hover {
	background: #0f4fd6;
}

.ricsian-auth-error {
	margin-bottom: 20px;
	padding: 12px 14px;
	border-radius: 10px;
	background: #fee2e2;
	color: #991b1b;
	border: 1px solid #fecaca;
}

.ricsian-auth-footer {
	margin-top: 20px;
	text-align: center;
	color: #64748b;
}

.ricsian-auth-card a {
	color: #155dfc;
	text-decoration: none;
	font-weight: 600;
}

.ricsian-auth-card a:hover {
	text-decoration: underline;
}