/* OTP Buttons */
#new-ey-send-otp-btn,
#new-ey-verify-otp-btn {
    display: inline-block;
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    border: none;
    font-weight: 700;
    cursor: pointer;
    font-size: 15px;
    margin-top: 10px;
    transition: all 0.25s ease;
    box-shadow: 0 3px 6px rgba(0,0,0,0.1);
}

/* Send OTP - Blue */
#new-ey-send-otp-btn {
    background: #0073aa;
    color: #fff;
}

    #new-ey-send-otp-btn:hover {
        background: #005f8d;
        transform: translateY(-2px);
    }

/* Verify OTP - Orange */
#new-ey-verify-otp-btn {
    background: #f39c12;
    color: #fff;
}

    #new-ey-verify-otp-btn:hover {
        background: #d35400;
        transform: translateY(-2px);
    }

/* Create Account - Green */
#new-ey-create-account-btn {
    width: 100%;
    padding: 16px;
    background: #2e7d32;
    color: #fff;
    font-size: 16px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    font-weight: bold;
    margin-top: 20px;
    transition: all 0.25s ease;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

    #new-ey-create-account-btn:hover {
        background: #1b5e20;
        transform: translateY(-2px);
    }
