/* FDM Google Gate — Gate & Denied Screen Styles */

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

.fdm-gate-body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
	background: #1a1a2e;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	color: #e0e0e0;
}

.fdm-gate-card {
	background: #16213e;
	border-radius: 12px;
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
	padding: 48px 40px;
	max-width: 420px;
	width: 100%;
	text-align: center;
}

/* Logo */
.fdm-gate-logo {
	margin-bottom: 32px;
}

.fdm-gate-logo-img {
	max-width: 200px;
	height: auto;
}

/* Message */
.fdm-gate-message {
	font-size: 15px;
	line-height: 1.6;
	color: #b0b0c0;
	margin-bottom: 32px;
}

/* Google sign-in button — follows Google branding guidelines */
.fdm-google-btn {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	background: #fff;
	color: #3c4043;
	border: 1px solid #dadce0;
	border-radius: 4px;
	padding: 10px 24px 10px 12px;
	font-size: 14px;
	font-weight: 500;
	font-family: 'Google Sans', Roboto, Arial, sans-serif;
	text-decoration: none;
	cursor: pointer;
	transition: box-shadow 0.2s, background-color 0.2s;
	-webkit-font-smoothing: antialiased;
}

.fdm-google-btn:hover {
	background: #f8f9fa;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
}

.fdm-google-btn:active {
	background: #f1f3f4;
}

.fdm-google-icon {
	flex-shrink: 0;
}

/* Error state */
.fdm-gate-error {
	font-size: 14px;
	color: #ff6b6b;
	background: rgba(231, 76, 60, 0.15);
	padding: 12px 16px;
	border-radius: 6px;
}

/* Denied screen specifics */
.fdm-denied-icon {
	margin-bottom: 16px;
}

.fdm-denied-title {
	font-size: 22px;
	font-weight: 600;
	color: #fff;
	margin-bottom: 12px;
}

.fdm-denied-email {
	font-size: 13px;
	color: #8888a0;
	margin-bottom: 24px;
}

.fdm-denied-actions {
	display: flex;
	flex-direction: column;
	gap: 10px;
	align-items: center;
}

.fdm-btn {
	display: inline-block;
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
	border-radius: 6px;
	padding: 10px 20px;
	transition: background-color 0.2s;
}

.fdm-btn-secondary {
	background: #fff;
	color: #1a1a2e;
}

.fdm-btn-secondary:hover {
	background: #e0e0e0;
}

.fdm-btn-link {
	color: #8888a0;
	padding: 8px 12px;
}

.fdm-btn-link:hover {
	color: #fff;
}

/* Responsive */
@media (max-width: 480px) {
	.fdm-gate-card {
		padding: 36px 24px;
	}

	.fdm-gate-logo-img {
		max-width: 160px;
	}
}
