* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family:
		"Geist Mono", "SF Mono", Monaco, "Cascadia Code", "Roboto Mono", Consolas, "Courier New",
		monospace;
	background: #fafafa;
	min-height: 100vh;
	color: #1a1a1a;
	line-height: 1.6;
	font-weight: 400;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
}

.auth-container {
	background: #ffffff;
	border-radius: 16px;
	padding: 40px;
	width: 100%;
	max-width: 440px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
	border: 1px solid #f0f0f0;
	position: relative;
}

.logo {
	text-align: center;
	margin-bottom: 32px;
}

.logo i {
	color: #f9ab00;
	font-size: 32px;
	margin-bottom: 12px;
}

.logo h1 {
	font-size: 24px;
	font-weight: 600;
	color: #1a1a1a;
	letter-spacing: -0.02em;
}

.logo p {
	font-size: 14px;
	color: #666;
	margin-top: 4px;
}

.auth-form {
	display: none;
}

.auth-form.active {
	display: block;
	animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.form-title {
	font-size: 20px;
	font-weight: 600;
	color: #1a1a1a;
	margin-bottom: 8px;
	text-align: center;
}

.form-subtitle {
	font-size: 14px;
	color: #666;
	text-align: center;
	margin-bottom: 32px;
}

.form-group {
	margin-bottom: 20px;
}

.form-label {
	display: block;
	margin-bottom: 8px;
	font-weight: 500;
	color: #1a1a1a;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.form-input {
	width: 100%;
	padding: 14px 16px;
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	font-size: 14px;
	transition: all 0.2s ease;
	font-family: inherit;
	background: #ffffff;
}

.form-input:focus {
	outline: none;
	border-color: #f9ab00;
	box-shadow: 0 0 0 3px rgba(249, 171, 0, 0.1);
}

.form-input.error {
	border-color: #ef4444;
	box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.error-message {
	color: #ef4444;
	font-size: 12px;
	margin-top: 4px;
	display: none;
}

.error-message.show {
	display: block;
}

.btn {
	width: 100%;
	padding: 14px 24px;
	border: none;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.2s ease;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-family: inherit;
	letter-spacing: -0.01em;
	margin-bottom: 16px;
}

.btn-primary {
	background: linear-gradient(135deg, #f9ab00, #e8a317);
	color: white;
	box-shadow: 0 2px 8px rgba(249, 171, 0, 0.3);
}

.btn-primary:hover {
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(249, 171, 0, 0.4);
}

.btn-primary:disabled {
	opacity: 0.6;
	cursor: not-allowed;
	transform: none;
}

.btn-secondary {
	background: transparent;
	color: #f9ab00;
	border: 1px solid #f9ab00;
}

.btn-secondary:hover {
	background: #fef7e0;
	transform: translateY(-1px);
}

.social-login {
	margin: 24px 0;
}

.social-divider {
	text-align: center;
	margin: 24px 0;
	position: relative;
	color: #666;
	font-size: 12px;
}

.social-divider::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	height: 1px;
	background: #e0e0e0;
	z-index: 1;
}

.social-divider span {
	background: #ffffff;
	padding: 0 16px;
	position: relative;
	z-index: 2;
}

.social-buttons {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
	margin-bottom: 24px;
}

.social-btn {
	padding: 12px;
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	background: #ffffff;
	cursor: pointer;
	transition: all 0.2s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-size: 14px;
	font-weight: 500;
	color: #1a1a1a;
}

.social-btn:hover {
	background: #fafafa;
	border-color: #f9ab00;
	transform: translateY(-1px);
}

.social-btn i {
	font-size: 16px;
}

.social-btn.google i {
	color: #4285f4;
}
.social-btn.linkedin i {
	color: #0077b5;
}
.social-btn.microsoft i {
	color: #00a1f1;
}
.social-btn.github i {
	color: #333;
}

.form-footer {
	text-align: center;
	margin-top: 24px;
	padding-top: 24px;
	border-top: 1px solid #f0f0f0;
}

.form-footer a {
	color: #f9ab00;
	text-decoration: none;
	font-weight: 500;
	font-size: 14px;
}

.form-footer a:hover {
	text-decoration: underline;
}

.otp-inputs {
	display: flex;
	gap: 12px;
	justify-content: center;
	margin: 24px 0;
}

.otp-input {
	width: 48px;
	height: 48px;
	text-align: center;
	font-size: 18px;
	font-weight: 600;
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	transition: all 0.2s ease;
}

.otp-input:focus {
	outline: none;
	border-color: #f9ab00;
	box-shadow: 0 0 0 3px rgba(249, 171, 0, 0.1);
}

.resend-code {
	text-align: center;
	margin-top: 16px;
}

.resend-code button {
	background: none;
	border: none;
	color: #f9ab00;
	cursor: pointer;
	font-size: 14px;
	text-decoration: underline;
}

.profile-setup {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

.profile-setup .form-group:nth-child(1),
.profile-setup .form-group:nth-child(2) {
	grid-column: span 1;
}

.profile-setup .form-group:nth-child(n + 3) {
	grid-column: span 2;
}

.loading-spinner {
	display: none;
	width: 20px;
	height: 20px;
	border: 2px solid #ffffff;
	border-top: 2px solid transparent;
	border-radius: 50%;
	animation: spin 1s linear infinite;
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

.success-message {
	background: #dcfce7;
	color: #166534;
	padding: 12px 16px;
	border-radius: 8px;
	margin-bottom: 20px;
	font-size: 14px;
	text-align: center;
	display: none;
}

.success-message.show {
	display: block;
}

@media (max-width: 480px) {
	.auth-container {
		padding: 24px;
		margin: 0;
		border-radius: 0;
		min-height: 100vh;
		display: flex;
		flex-direction: column;
		justify-content: center;
	}

	.social-buttons {
		grid-template-columns: 1fr;
	}

	.profile-setup {
		grid-template-columns: 1fr;
	}

	.profile-setup .form-group {
		grid-column: span 1 !important;
	}
}
