/* nndrei-auth — pantalla de login. Sin dependencias, sin CDNs, sin JS. */

*,
*::before,
*::after {
	box-sizing: border-box;
}

body {
	margin: 0;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 16px;
	background: #fff;
	color: #0a0a0a;
	font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	-webkit-font-smoothing: antialiased;
}

.card {
	width: 100%;
	max-width: 420px;
	padding: 44px 36px 32px;
	background: #fff;
	border: 1px solid #ececec;
	border-radius: 24px;
	box-shadow: 0 24px 60px -24px rgba(15, 15, 15, 0.14),
		0 4px 18px -8px rgba(15, 15, 15, 0.06);
	text-align: center;
}

.logo {
	width: 64px;
	height: 64px;
	margin: 0 auto 22px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	border: 1px solid #ededed;
	border-radius: 50%;
	box-shadow: 0 6px 16px -6px rgba(15, 15, 15, 0.16);
	color: #9a9a9a;
}

.glyph {
	display: block;
}

h1 {
	margin: 0 0 6px;
	font-size: 28px;
	line-height: 1.2;
	font-weight: 600;
	letter-spacing: -0.02em;
	color: #0f0f0f;
}

.subtitle {
	margin: 0 0 28px;
	font-size: 14px;
	line-height: 1.5;
	color: #8a8a8a;
}

.email {
	color: #4a4a4a;
	font-weight: 500;
	word-break: break-all;
}

.btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: 100%;
	padding: 14px 20px;
	background: #0a0a0a;
	color: #fff;
	border-radius: 24px;
	font-size: 15px;
	font-weight: 500;
	text-decoration: none;
	transition: background-color 0.15s ease;
}

.btn:hover,
.btn:focus-visible {
	background: #262626;
}

.btn:focus-visible {
	outline: 2px solid #0a0a0a;
	outline-offset: 3px;
}

.gicon {
	display: block;
	flex: none;
	background: #fff;
	border-radius: 50%;
	padding: 1px;
}

.foot {
	margin: 22px 0 0;
	font-size: 12.5px;
	line-height: 1.5;
	color: #b0b0b0;
}

@media (max-width: 420px) {
	.card {
		padding: 36px 24px 26px;
		border-radius: 22px;
	}

	h1 {
		font-size: 25px;
	}
}
