 * {
	font-family: 'Inter', sans-serif;
	word-break: break-all;
}

body {
	background: #f3f2ef;
	color: #000000de;
}

.auth-card {
	background: #ffffff;
	border: 1px solid rgba(0,0,0,.08);
	box-shadow: 0 0 0 1px rgba(0,0,0,.08);
}

.google-btn {
	background: #ffffff;
	border: 1px solid rgba(0,0,0,.08);
	transition: all 0.2s ease;
	box-shadow: 0 0 0 1px rgba(0,0,0,.08);
}

.google-btn:hover {
	box-shadow: 0 0 0 1px rgba(0,0,0,.08), 0 4px 12px rgba(0,0,0,.12);
	border-color: rgba(0,0,0,.12);
}

.link {
	color: #0a66c2;
	font-weight: 600;
	transition: color 0.2s;
}

.link:hover {
	color: #004182;
}

.divider {
	position: relative;
	text-align: center;
	margin: 1.5rem 0;
}

.divider::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	width: 100%;
	height: 1px;
	background: rgba(0,0,0,.08);
}

.divider span {
	position: relative;
	background: #ffffff;
	padding: 0 1rem;
	color: #6b7280;
	font-size: 0.875rem;
}

.feature-item {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
}

.check-icon {
	width: 20px;
	height: 20px;
	background: #0a66c2;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	margin-top: 2px;
}

.toggle-container {
	display: inline-flex;
	background: #f3f4f6;
	padding: 4px;
	border-radius: 8px;
	margin-bottom: 1.5rem;
}

.toggle-btn {
	padding: 8px 24px;
	border-radius: 6px;
	font-weight: 600;
	font-size: 0.875rem;
	transition: all 0.2s ease;
	cursor: pointer;
	border: none;
	background: transparent;
	color: #6b7280;
}

.toggle-btn.active {
	background: #ffffff;
	color: #0a66c2;
	box-shadow: 0 1px 3px rgba(0,0,0,.1);
}
	
.form-content {
	display: none;
}
	
.form-content.active {
	display: block;
}