.vazo-login-form,
.vazo-profile-form {
	max-width: 400px;
	margin: 2rem auto;
	padding: 1.5rem;
	border: 1px solid #ddd;
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 2px 10px rgba(0,0,0,0.05);
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Tahoma, sans-serif;
}

.vazo-login-form input[type="text"],
.vazo-login-form input[type="email"],
.vazo-profile-form input[type="text"],
.vazo-profile-form input[type="email"],
.vazo-profile-form input[type="password"] {
	width: 100%;
	padding: 12px;
	margin: 8px 0;
	border: 1px solid #ccc;
	border-radius: 4px;
	box-sizing: border-box;
	font-size: 16px;
}

.vazo-login-form button,
.vazo-profile-form button {
	width: 100%;
	padding: 12px;
	background: #0073aa;
	color: white;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	font-size: 16px;
	margin-top: 10px;
	transition: background 0.2s;
}

.vazo-login-form button:hover,
.vazo-profile-form button:hover {
	background: #005a87;
}

.vazo-login-form .vazo-error,
.vazo-profile-form .vazo-error {
	color: #d63638;
	background: #ffebee;
	padding: 10px;
	border-radius: 4px;
	margin-bottom: 15px;
}

#otp-timer {
	text-align: center;
	font-size: 14px;
	margin-top: 12px;
	color: #555;
}

#2fa-options {
	margin-top: 15px;
	display: flex;
	gap: 10px;
}

#2fa-options button {
	flex: 1;
	padding: 10px;
	font-size: 14px;
}

/* 2FA Section */
.vazo-2fa-section {
	margin-top: 25px;
	padding-top: 20px;
	border-top: 1px solid #eee;
}

.vazo-2fa-section h3 {
	margin-bottom: 10px;
	color: #0073aa;
}

.vazo-2fa-section code {
	background: #f0f0f0;
	padding: 2px 6px;
	border-radius: 3px;
	font-family: monospace;
}

/* Responsive */
@media (max-width: 480px) {
	.vazo-login-form,
	.vazo-profile-form {
		margin: 1rem;
		padding: 1rem;
	}

	#2fa-options {
		flex-direction: column;
	}
}