/* css/signup.css */

.q-signup-wrap {
	min-height: calc(100vh - 45px);
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 18px;
	overflow: hidden;
	background: #05090f;
}

.q-signup-bg {
	position: absolute;
	inset: 0;
	background:
			radial-gradient(900px 520px at 72% 52%, rgba(62, 132, 255, 0.12), transparent 60%),
			radial-gradient(760px 420px at 30% 38%, rgba(255, 255, 255, 0.06), transparent 60%),
			linear-gradient(180deg, #04070c 0%, #050a12 55%, #04070c 100%);
}

.q-signup-card {
	position: relative;
	width: 100%;
	max-width: 420px;
	border-radius: 16px;
	padding: 22px 20px 18px;
	color: #e7eefc;

	background: rgba(10, 18, 32, 0.62);
	border: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow:
			0 18px 50px rgba(0, 0, 0, 0.55),
			inset 0 1px 0 rgba(255, 255, 255, 0.06);
	backdrop-filter: blur(10px);
}

.q-signup-brand {
	margin-bottom: 18px;
}

.q-signup-logo {
	font-size: 22px;
	font-weight: 800;
	color: #ffffff;
}
.q-signup-logo img {
	width: 150px;
	margin: 0 auto;
}

.q-signup-sub {
	margin-top: 6px;
	font-size: 12px;
	color: rgba(231, 238, 252, 0.75);
	line-height: 1.35;
	text-align: center;
}

.q-signup-form {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.q-field {
	display: block;
}

.q-label {
	font-size: 12px;
	color: rgba(231, 238, 252, 0.75);
	margin-bottom: 6px;
	padding-left: 6px;
}

.q-input {
	width: 100%;
	height: 42px;
	border-radius: 10px;
	border: 1px solid rgba(255, 255, 255, 0.10);
	background: rgba(0, 0, 0, 0.28);
	color: #ffffff;
	padding: 0 12px;
	outline: none;
	box-sizing: border-box;
}

.q-input:focus {
	border-color: rgba(255, 255, 255, 0.22);
	box-shadow: 0 0 0 4px rgba(62, 132, 255, 0.12);
}

.q-signup-err {
	padding: 10px 12px;
	border-radius: 10px;
	font-size: 12px;
	color: #ffd7d7;
	background: rgba(255, 70, 70, 0.12);
	border: 1px solid rgba(255, 70, 70, 0.22);
}

.q-btn {
	height: 44px;
	border-radius: 12px;
	border: none;
	background: #ffffff;
	color: #0b1220;
	font-weight: 800;
	cursor: pointer;
	margin-top: 10px;
}

.q-btn:active {
	transform: translateY(1px);
}

.q-signup-links {
	margin-top: 8px;
	text-align: center;
	font-size: 12px;
}

.q-link {
	color: rgba(231, 238, 252, 0.75);
	text-decoration: none;
}

.q-link:hover {
	color: #ffffff;
	text-decoration: underline;
}
