/* Inbox Guide Opt-in Form Styles */

.inbox-guide-form-wrapper {
	max-width: 500px;
	margin: 20px auto;
	padding: 30px;
	background: #f9f9f9;
	border-radius: 8px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.inbox-guide-heading {
	margin: 0 0 15px 0;
	font-size: 24px;
	font-weight: 700;
	color: #333;
	text-align: center;
}

.inbox-guide-description {
	margin: 0 0 20px 0;
	font-size: 16px;
	color: #666;
	text-align: center;
	line-height: 1.5;
}

.inbox-guide-form {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.inbox-guide-field label {
	display: block;
	margin-bottom: 8px;
	font-weight: 600;
	color: #333;
}

.inbox-guide-field input[type="email"] {
	width: 100%;
	padding: 12px;
	font-size: 16px;
	border: 1px solid #ddd;
	border-radius: 4px;
	transition: border-color 0.3s;
}

.inbox-guide-field input[type="email"]:focus {
	outline: none;
	border-color: #0073aa;
}

.inbox-guide-consent {
	display: flex;
	align-items: flex-start;
}

.inbox-guide-consent label {
	display: flex;
	align-items: flex-start;
	cursor: pointer;
	font-size: 14px;
	color: #666;
}

.inbox-guide-consent input[type="checkbox"] {
	margin-right: 10px;
	margin-top: 2px;
	cursor: pointer;
}

.inbox-guide-submit {
	text-align: center;
}

.inbox-guide-button {
	background: #0073aa;
	color: #fff;
	padding: 14px 32px;
	font-size: 16px;
	font-weight: 600;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	transition: background 0.3s;
}

.inbox-guide-button:hover:not(:disabled) {
	background: #005a87;
}

.inbox-guide-button:disabled {
	background: #ccc;
	cursor: not-allowed;
}

.inbox-guide-message {
	padding: 12px;
	border-radius: 4px;
	text-align: center;
	font-weight: 500;
	display: none;
}

.inbox-guide-message.inbox-guide-success {
	display: block;
	background: #d4edda;
	color: #155724;
	border: 1px solid #c3e6cb;
}

.inbox-guide-message.inbox-guide-error {
	display: block;
	background: #f8d7da;
	color: #721c24;
	border: 1px solid #f5c6cb;
}

/* Responsive */
@media (max-width: 600px) {
	.inbox-guide-form-wrapper {
		padding: 20px;
		margin: 10px;
	}
}
