/* Agendasoft - Telas de autenticação (login, recuperar senha, redefinir senha) */
:root {
	--auth-primary: #2563eb;
	--auth-primary-hover: #1d4ed8;
	--auth-light: #eff6ff;
	--auth-muted: #64748b;
	--auth-border: #e2e8f0;
	--auth-radius: 12px;
	--auth-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.07), 0 2px 4px -2px rgb(0 0 0 / 0.05);
}

body.auth-page {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 2rem 1rem;
	font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
	background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
	color: #1e293b;
}

.auth-container {
	width: 100%;
	max-width: 420px;
}

.auth-logo.auth-logo-inside {
	text-align: center;
	padding: 1.5rem 1.5rem 0;
	margin-bottom: 0;
}
.auth-logo.auth-logo-inside img {
	height: 48px;
	width: auto;
	display: block;
	margin: 0 auto;
}

.auth-card {
	background: #fff;
	border: 1px solid var(--auth-border);
	border-radius: var(--auth-radius);
	box-shadow: var(--auth-shadow);
	overflow: hidden;
}

.auth-card-body {
	padding: 2rem 1.75rem;
}

.auth-title {
	font-size: 1.25rem;
	font-weight: 700;
	color: #0f172a;
	margin-bottom: 0.25rem;
	text-align: center;
}

.auth-sub {
	font-size: 0.9rem;
	color: var(--auth-muted);
	text-align: center;
	margin-bottom: 1.5rem;
}

.auth-card .form-group {
	margin-bottom: 1rem;
}
.auth-card .form-group label {
	font-weight: 600;
	color: #334155;
	font-size: 0.9rem;
	margin-bottom: 0.35rem;
}
.auth-card .form-control {
	border-radius: 8px;
	border: 1px solid var(--auth-border);
	padding: 0.6rem 0.75rem;
	font-size: 1rem;
}
.auth-card .form-control:focus {
	border-color: var(--auth-primary);
	box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
	outline: 0;
}

.auth-btn-primary {
	width: 100%;
	padding: 0.75rem 1.25rem;
	font-size: 1rem;
	font-weight: 600;
	border-radius: var(--auth-radius);
	background: var(--auth-primary);
	color: #fff;
	border: none;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	transition: background 0.2s;
}
.auth-btn-primary:hover {
	background: var(--auth-primary-hover);
	color: #fff;
}

.auth-divider {
	margin: 1.25rem 0;
	border: 0;
	border-top: 1px solid var(--auth-border);
}

.auth-links {
	text-align: center;
}
.auth-links .auth-link {
	display: block;
	font-size: 0.9rem;
	color: var(--auth-primary);
	text-decoration: none;
	margin-bottom: 0.5rem;
}
.auth-links .auth-link:hover {
	text-decoration: underline;
	color: var(--auth-primary-hover);
}

.auth-tabs {
	display: flex;
	border-bottom: 2px solid var(--auth-border);
	margin-bottom: 1.25rem;
	gap: 0;
}
.auth-tab {
	flex: 1;
	padding: 0.6rem 0.75rem;
	text-align: center;
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--auth-muted);
	background: transparent;
	border: none;
	cursor: pointer;
	text-decoration: none;
	border-bottom: 2px solid transparent;
	margin-bottom: -2px;
	transition: color 0.2s, border-color 0.2s;
}
.auth-tab:hover {
	color: var(--auth-primary);
}
.auth-tab.ativo {
	color: var(--auth-primary);
	border-bottom-color: var(--auth-primary);
}

.auth-pane {
	display: none;
}
.auth-pane.ativo {
	display: block;
}

.auth-hint {
	font-size: 0.8rem;
	color: var(--auth-muted);
	margin-top: 0.25rem;
}

.auth-checkbox-label {
	font-size: 0.9rem;
	color: #475569;
}
