/**
 * Aera Email Verification – Frontend Styles
 *
 * @package Aera\EmailVerification
 * @since   1.0.0
 */

/* Resend Form */
.aera-ev-resend-form {
	max-width: 480px;
	margin: 0 auto;
}

.aera-ev-resend-form-inner {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.aera-ev-input {
	width: 100%;
	padding: 10px 14px;
	border: 1px solid #ddd;
	border-radius: 4px;
	font-size: 14px;
	line-height: 1.5;
	box-sizing: border-box;
}

.aera-ev-input:focus {
	border-color: #0073aa;
	outline: none;
	box-shadow: 0 0 0 1px #0073aa;
}

.aera-ev-button {
	display: inline-block;
	padding: 10px 24px;
	background-color: #0073aa;
	color: #fff;
	border: none;
	border-radius: 4px;
	font-size: 14px;
	cursor: pointer;
	transition: background-color 0.2s ease;
}

.aera-ev-button:hover {
	background-color: #005a87;
}

.aera-ev-button:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

/* Status Messages */
.aera-ev-message {
	padding: 10px 14px;
	border-radius: 4px;
	font-size: 14px;
	line-height: 1.5;
}

.aera-ev-message.success {
	background-color: #ecf7ed;
	border: 1px solid #46b450;
	color: #2e7d32;
}

.aera-ev-message.error {
	background-color: #fef0f0;
	border: 1px solid #dc3232;
	color: #c62828;
}

/* Verification Status Shortcode */
.aera-ev-status {
	padding: 12px 16px;
	border-radius: 4px;
	margin: 10px 0;
}

.aera-ev-verified {
	background-color: #ecf7ed;
	border-left: 4px solid #46b450;
}

.aera-ev-pending {
	background-color: #fff8e1;
	border-left: 4px solid #ffb300;
}
