/* email-verifier.css */
.email-verifier-form {
    max-width: 600px;
    margin: 20px 0;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-group input[type="email"],
.form-group textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 3px;
    box-sizing: border-box;
}

.verify-btn, .submit-btn {
    padding: 10px 20px;
    background-color: #0073aa;
    color: white;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    margin-top: 10px;
}

.verify-btn:hover, .submit-btn:hover {
    background-color: #005177;
}

.verify-btn:disabled, .submit-btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.verification-status {
    margin: 15px 0;
    padding: 10px;
    border-radius: 3px;
}

.verification-status .success {
    color: #0a7e0a;
    display: block;
}

.verification-status .error {
    color: #d00;
    display: block;
}

.verification-status .checking {
    color: #555;
    display: block;
    font-style: italic;
}

.verification-status .checking::after {
    content: "...";
    animation: dots 1.5s steps(5, end) infinite;
}

@keyframes dots {
    0%, 20% { content: "."; }
    40% { content: ".."; }
    60% { content: "..."; }
    80%, 100% { content: ""; }
}
