.eol-login-wrapper {
    max-width: 400px;
    margin: 0 auto;
    padding: 20px;
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: sans-serif;
}

.eol-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
}

.eol-form input[type="email"],
.eol-form input[type="text"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.eol-btn {
    width: 100%;
    padding: 10px;
    background: #0073aa;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s;
}

.eol-btn:hover {
    background: #005177;
}

.eol-btn:disabled {
    background: #aaa;
    cursor: not-allowed;
}

#eol-message {
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 4px;
    font-size: 14px;
}

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

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

#eol-resend-otp {
    font-size: 14px;
    color: #0073aa;
    text-decoration: none;
}

#eol-resend-otp:hover {
    text-decoration: underline;
}

/* Modal Styles for v1.1 */
.eol-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 99999;
    align-items: center;
    justify-content: center;
}

.eol-modal-overlay.eol-show {
    display: flex;
}

.eol-modal-overlay .eol-login-wrapper {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 20px;
}

.eol-modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    line-height: 1;
}

.eol-modal-close:hover {
    color: #000;
}
