#elallas-form-wrap {
    max-width: 560px;
    margin: 0 auto;
}

#elallas-form .ef-field {
    margin-bottom: 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

#elallas-form label {
    font-weight: 600;
    font-size: 0.95rem;
}

#elallas-form input[type="text"],
#elallas-form input[type="email"],
#elallas-form input[type="number"] {
    padding: 0.6rem 0.8rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
    width: 100%;
    box-sizing: border-box;
}

#elallas-form input:focus {
    outline: 2px solid #0073aa;
    border-color: #0073aa;
}

.ef-captcha input[type="number"] {
    max-width: 120px;
}

#ef-submit {
    padding: 0.7rem 1.4rem;
    background: #0073aa;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    margin-top: 0.5rem;
}

#ef-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

#ef-submit:hover:not(:disabled) {
    background: #005a87;
}

.ef-message {
    padding: 0.7rem 1rem;
    border-radius: 4px;
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.ef-message:empty {
    display: none;
}

.ef-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.ef-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}
