.es-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 9999;
    display: none;
    justify-content: center;
    align-items: center;
}

.es-modal-container {
    background: #0a0a0a;
    color: #f0f0f0;
    max-width: 520px;
    width: 92%;
    padding: 40px 30px;
    border-radius: 12px;
    border: 2px solid #00bcd4;
    position: relative;
}

.es-modal-close {
    position: absolute;
    top: 12px;
    right: 20px;
    font-size: 28px;
    color: #888;
    cursor: pointer;
}
.es-modal-close:hover { color: #fff; }

.es-form-group {
    margin-bottom: 18px;
}
.es-form-group label {
    display: block;
    margin-bottom: 5px;
    color: #ccc;
}
.es-form-group input,
.es-form-group textarea {
    width: 100%;
    padding: 12px;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 6px;
    color: #f0f0f0;
}
.es-form-group input:focus,
.es-form-group textarea:focus {
    border-color: #00bcd4;
    outline: none;
}

.es-modal-container button[type="submit"] {
    width: 100%;
    padding: 14px;
    background: #00bcd4;
    color: #000;
    font-weight: bold;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}
.es-modal-container button[type="submit"]:hover {
    background: #00d4e6;
}

#es-feedback {
    margin-top: 16px;
    text-align: center;
}
#es-feedback.success { color: #4caf50; }
#es-feedback.error { color: #ff5252; }

.eq-button {
    padding: 12px 30px;
    background: #ffb703;
    color: #000;
    border: none;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}
