/* css/resend.css */
.fooevents-resend-form-container {
    max-width: 500px;
    margin: 2em auto;
    padding: 2em;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.fooevents-resend-form .form-group {
    margin-bottom: 1.5em;
}

.fooevents-resend-form label {
    display: block;
    margin-bottom: 0.5em;
    font-weight: bold;
}

.fooevents-resend-form input[type="email"] {
    width: 100%;
    padding: 0.8em;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.fooevents-resend-form .submit-button {
    width: 100%;
    padding: 1em;
    background: #2271b1;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
}

.fooevents-resend-form .submit-button:hover {
    background: #135e96;
}

.fooevents-resend-form .submit-button:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.fooevents-resend-form .messages {
    margin: 1em 0;
}

.fooevents-resend-form .message {
    padding: 1em;
    border-radius: 4px;
    margin-bottom: 1em;
}

.fooevents-resend-form .message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.fooevents-resend-form .message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.fooevents-resend-form .message.info {
    background: #cce5ff;
    color: #004085;
    border: 1px solid #b8daff;
}